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
|
# 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/"]
|
||||||
|
|||||||
Reference in New Issue
Block a user