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