3 Commits

Author SHA1 Message Date
00dc3da970 Add healthchecks 2026-03-20 18:26:54 +05:30
4f80f82dc1 Add new env 2026-03-20 18:26:35 +05:30
e96bf713b3 Add PORT 2026-03-20 18:22:47 +05:30

View File

@@ -6,10 +6,19 @@ services:
environment:
- ICON_SOURCE=remote
- REMOTE_URL=${REMOTE_URL}
- PRIMARY_COLOR=${PRIMARY_COLOR}
- CACHE_TTL=${CACHE_TTL}
- CACHE_SIZE=${CACHE_SIZE}
ports:
- 4050:4050
- ${PORT}:4050
networks:
- frontend
healthcheck:
test: ["CMD", "/server", "-healthcheck"]
interval: 30s
timeout: 5s
retries: 3
start_period: 5s
networks:
frontend: