🐳 Docker Configuration Improvements: - Simplified docker-compose.yml to use single app folder bind mount - Removed complex data folder mapping that caused path confusion - Updated environment variables to match entrypoint script expectations - Streamlined deployment for better reliability 🔧 Upload System Fixes: - Fixed path resolution issues in uploads.py for containerized deployment - Simplified upload folder path handling to work correctly in containers - Removed complex absolute path conversion logic that caused file placement issues - Ensured all file operations use consistent /app/static/uploads path 📁 File Processing Improvements: - Fixed PPTX to JPG conversion workflow path handling - Corrected PDF processing to save files in correct container location - Improved video conversion path resolution - Enhanced error handling and logging for upload operations 🚀 Production Benefits: - Eliminates 404 errors for uploaded media files - Ensures files are saved in correct locations within container - Simplifies development and debugging with direct app folder mounting - Maintains data consistency across container restarts ✅ This resolves the upload workflow issues where PPTX files were not being correctly processed and saved to the expected locations.
34 lines
781 B
YAML
Executable File
34 lines
781 B
YAML
Executable File
# DigiServer - Digital Signage Management Platform
|
|
# Version: 1.1.0
|
|
# Build Date: 2025-06-29
|
|
|
|
services:
|
|
digiserver:
|
|
build: .
|
|
image: digiserver:latest
|
|
container_name: digiserver
|
|
ports:
|
|
- "8880:5000"
|
|
environment:
|
|
- FLASK_APP=app.py
|
|
- FLASK_RUN_HOST=0.0.0.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
|
|
- ./app:/app
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:5000/"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
networks:
|
|
- digiserver-network
|
|
|
|
networks:
|
|
digiserver-network:
|
|
driver: bridge
|