updated to folders

This commit is contained in:
Ske087
2025-02-01 22:38:22 +02:00
parent 2b259af3a5
commit 6b9c3e6847
5 changed files with 19 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
version: '3.8'
services:
web:
image: digi_server:latest
image: digi-server:latest
ports:
- "7100:5000"
environment:
@@ -13,4 +13,6 @@ services:
- SECRET_KEY=Ma_Duc_Dupa_Merele_Lui_Ana
volumes:
- .:/app
- ./data/db:/app/instance
- ./data/static:/app/static/uploads
command: sh -c "python clear_db.py && python init_db.py && gunicorn -w 4 -b 0.0.0.0:5000 app:app"