add saved files
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 153 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 52 KiB |
Binary file not shown.
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
17
docker-compose.yml
Executable file → Normal 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/"]
|
||||
|
||||
Reference in New Issue
Block a user