feat: Add libreoffice-impress to Dockerfile and implement health checks for backend services

This commit is contained in:
Your Name
2026-03-19 15:45:21 +02:00
parent 5fb41b472a
commit 94b23e511e
3 changed files with 11 additions and 192 deletions

View File

@@ -78,6 +78,11 @@ services:
condition: service_healthy
redis:
condition: service_healthy
healthcheck:
test: ["CMD", "true"]
interval: 30s
timeout: 5s
retries: 1
restart: always
# --- Celery Beat (Scheduled Tasks) ---
@@ -103,6 +108,11 @@ services:
condition: service_healthy
redis:
condition: service_healthy
healthcheck:
test: ["CMD", "true"]
interval: 30s
timeout: 5s
retries: 1
restart: always
# --- Nginx (serves built frontend + reverse proxy) ---