From b424080e9ebbb534523cc1f27195ca03bff879f9 Mon Sep 17 00:00:00 2001 From: Scheianu Ionut Date: Thu, 22 May 2025 15:52:28 +0300 Subject: [PATCH] updated docker compose --- docker-compose.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index a4f5f33..467b737 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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