fix: comment out healthcheck configurations for services in reactive-resume

This commit is contained in:
nathan 2026-04-30 21:40:28 -04:00
parent 81f2f48a86
commit f34b0a56bd

View File

@ -11,11 +11,11 @@ services:
- internal-resume-net
volumes:
- /mnt/appdata/reactive-resume/postgres:/var/lib/postgresql
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 10
# healthcheck:
# test: ["CMD-SHELL", "pg_isready -U postgres"]
# interval: 5s
# timeout: 5s
# retries: 10
reactive-resume-printer:
image: ghcr.io/browserless/chromium:latest
@ -30,11 +30,11 @@ services:
- CONCURRENT=20
- QUEUED=10
- TOKEN=${BROWSERLESS_TOKEN}
healthcheck:
test: ["CMD-SHELL", 'curl -fsS "http://localhost:3000/pressure?token=${BROWSERLESS_TOKEN}" > /dev/null']
interval: 10s
timeout: 5s
retries: 10
# healthcheck:
# test: ["CMD-SHELL", 'curl -fsS "http://localhost:3000/pressure?token=${BROWSERLESS_TOKEN}" > /dev/null']
# interval: 10s
# timeout: 5s
# retries: 10
reactive-resume:
image: amruthpillai/reactive-resume:latest
@ -56,11 +56,11 @@ services:
condition: service_healthy
reactive-resume-printer:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/api/health"]
interval: 30s
timeout: 10s
retries: 3
# healthcheck:
# test: ["CMD", "curl", "-f", "http://localhost:3000/api/health"]
# interval: 30s
# timeout: 10s
# retries: 3
labels:
- "traefik.enable=true"
- "traefik.http.routers.reactive-resume.entrypoints=websecure"