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