Move healthcheck into Dockerfile and simplify docker-compose.yml

Uses BusyBox wget (included in Alpine) instead of Node.js fetch for the
health check. docker-compose.yml now references the published GHCR image
instead of building locally.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-01 14:54:05 -05:00
co-authored by Claude Opus 4.6
parent 2995d89154
commit cddef34909
2 changed files with 4 additions and 8 deletions
+1 -8
View File
@@ -1,7 +1,6 @@
services:
sofa:
build: .
image: sofa
image: ghcr.io/jakejarvis/sofa:latest
container_name: sofa
restart: unless-stopped
ports:
@@ -13,12 +12,6 @@ services:
- TMDB_API_READ_ACCESS_TOKEN=${TMDB_API_READ_ACCESS_TOKEN}
- BETTER_AUTH_SECRET=${BETTER_AUTH_SECRET}
- BETTER_AUTH_URL=${BETTER_AUTH_URL:-http://localhost:3000}
healthcheck:
test: ["CMD", "node", "-e", "fetch('http://localhost:3000/api/health').then(r=>{if(!r.ok)process.exit(1)}).catch(()=>process.exit(1))"]
interval: 30s
timeout: 10s
start_period: 30s
retries: 3
volumes:
sofa-data: