Files
digiserver/docker-compose.yml
2025-05-18 23:24:17 +03:00

23 lines
747 B
YAML

version: '3.8'
services:
web:
image: digi-server:latest
ports:
- "80:5000"
environment:
- FLASK_APP=app.py
- FLASK_RUN_HOST=0.0.0.0
- ADMIN_USER=admin
- ADMIN_PASSWORD=Initial01!
- 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
#restart: unless-stopped