Fix healthcheck in docs (#781)

This commit is contained in:
Jonas Plum
2026-02-06 11:49:54 +01:00
committed by GitHub
parent 82ad995cdc
commit d1c87577de

View File

@@ -88,7 +88,7 @@ services:
volumes: volumes:
- ./data/pb_data:/pb_data - ./data/pb_data:/pb_data
healthcheck: healthcheck:
test: wget --spider -q http://localhost:8090/health || exit 1 test: ["CMD", "/curl", "--fail", "http://localhost:8090/health"]
interval: 15s interval: 15s
retries: 10 retries: 10
start_period: 20s start_period: 20s
@@ -123,7 +123,7 @@ services:
- wanderer - wanderer
restart: unless-stopped restart: unless-stopped
healthcheck: healthcheck:
test: curl --fail http://localhost:3000/ || exit 1 test: ["CMD", "/curl", "--fail", "http://localhost:3000/"]
interval: 15s interval: 15s
retries: 10 retries: 10
start_period: 20s start_period: 20s