cleanup & setting up sync update

This commit is contained in:
2025-03-24 17:19:51 +03:00
parent a2ce9248f0
commit 22473c8f3f
13650 changed files with 507 additions and 1947259 deletions
+36 -1
View File
@@ -10,8 +10,43 @@ services:
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80"]
timeout: 30s
start_period: 3600s
start_period: 30s
start_interval: 10s
interval: 30s
retries: 5
statistics:
image: ${STATISTICS_IMAGE:-streamline-emr-statistics:latest}
container_name: ${STATISTICS_CONTAINER:-streamline-emr-statistics}
restart: unless-stopped
volumes:
- statistics_data:/app
depends_on:
- streamline-emr
networks:
- streamline
env_file:
- "${STATISTICS_ENV:-./resources/statistics.env}"
redis:
image: ${REDIS_IMAGE:-streamline-emr-redis:latest}
container_name: ${REDIS_CONTAINER:-streamline-emr-redis}
restart: unless-stopped
ports:
- "${REDIS_PORT:-6379}:6379"
volumes:
- redis_data:/data
networks:
- streamline
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 30s
timeout: 10s
retries: 3
volumes:
statistics_data:
redis_data:
networks:
streamline: