updated docker compose

This commit is contained in:
2025-05-22 15:52:28 +03:00
parent 06166c1447
commit b424080e9e

View File

@@ -2,7 +2,6 @@ version: '3.8'
services:
web:
image: digi-server:latest
ports:
- "80:5000"
@@ -14,9 +13,10 @@ services:
- SECRET_KEY=Ma_Duc_Dupa_Merele_Lui_Ana
volumes:
- .:/app
- /home/pi/Desktop/digi-server/db:/app/instance
- /home/pi/Desktop/digi-server/static:/app/static/uploads
# when setting allready exist and data are setted and is performed an update use second line of command
command: sh -c "python clear_db.py && python init_db.py && gunicorn -w 4 -b 0.0.0.0:5000 app:app"
#command: sh -c "python init_db.py && gunicorn -w 4 -b 0.0.0.0:5000 app:app"docker
- /home/pi/Desktop/digi-server/db:/app/instance # Persistent database storage
- /home/pi/Desktop/digi-server/static:/app/static/uploads # Persistent static files
# Use this command for first-time setup
command: sh -c "python init_db.py && gunicorn -w 4 -b 0.0.0.0:5000 app:app"
# Use this command for subsequent runs to avoid clearing the database
# command: gunicorn -w 4 -b 0.0.0.0:5000 app:app
restart: unless-stopped