add saved files

This commit is contained in:
2025-09-04 13:14:10 -04:00
parent 505c8e268c
commit 3cc703a7d1
7 changed files with 11 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 153 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 537 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 MiB

17
docker-compose.yml Executable file → Normal file
View File

@@ -1,6 +1,5 @@
# DigiServer - Digital Signage Management Platform # Production Docker Compose Configuration
# Version: 1.1.0 # Use this for production deployment
# Build Date: 2025-06-29
services: services:
digiserver: digiserver:
@@ -8,16 +7,22 @@ services:
image: digiserver:latest image: digiserver:latest
container_name: digiserver container_name: digiserver
ports: ports:
- "80:5000" - "8880:5000"
environment: environment:
- FLASK_APP=app.py - FLASK_APP=app.py
- FLASK_RUN_HOST=0.0.0.0 - FLASK_RUN_HOST=0.0.0.0
- FLASK_ENV=production
- FLASK_DEBUG=0
- ADMIN_USER=admin - ADMIN_USER=admin
- ADMIN_PASSWORD=Initial01! - ADMIN_PASSWORD=Initial01!
- SECRET_KEY=Ma_Duc_Dupa_Merele_Lui_Ana - SECRET_KEY=Ma_Duc_Dupa_Merele_Lui_Ana
volumes: volumes:
# Bind mount the app folder for easier development and debugging # Mount app code
- ./data:/app - ./app:/app
# Persistent data volumes
- ./data/instance:/app/instance
- ./data/uploads:/app/static/uploads
- ./data/resurse:/app/static/resurse
restart: unless-stopped restart: unless-stopped
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000/"] test: ["CMD", "curl", "-f", "http://localhost:5000/"]