mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-08-29 02:45:39 -04:00
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>
18 lines
443 B
YAML
18 lines
443 B
YAML
services:
|
|
sofa:
|
|
image: ghcr.io/jakejarvis/sofa:latest
|
|
container_name: sofa
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- sofa-data:/data
|
|
environment:
|
|
- DATABASE_URL=file:/data/sqlite.db
|
|
- 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}
|
|
|
|
volumes:
|
|
sofa-data:
|