Skip to content

Commit 4b70623

Browse files
committed
fix: add healthcheck override for rackula
Upstream image has broken healthcheck causing Traefik to filter the container as unhealthy. Override with working wget check.
1 parent 59a334d commit 4b70623

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

services-available/rackula.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ services:
1313
container_name: ${RACKULA_CONTAINER_NAME:-rackula}
1414
restart: ${RACKULA_RESTART:-unless-stopped}
1515
mem_limit: ${RACKULA_MEM_LIMIT:-128m}
16+
healthcheck:
17+
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:80/"]
18+
interval: 30s
19+
timeout: 5s
20+
retries: 3
21+
start_period: 10s
1622
networks:
1723
- traefik
1824
volumes:

0 commit comments

Comments
 (0)