Initial commit

This commit is contained in:
Rekryt
2024-08-30 15:22:24 +03:00
commit 171e449744
46 changed files with 4638 additions and 0 deletions

23
docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
services:
app:
restart: unless-stopped
build:
context: .
env_file:
- ./.env
volumes:
- ./src/:/app/src/
- ./storage/:/app/storage/
- ./config/:/app/config/
ports:
- '8080:8080'
logging:
driver: 'json-file'
options:
max-size: '50m'
# networks:
# - web
#networks:
# web:
# external: true
# name: web