Files
pocket-id-pocket-id/docker-compose.yml

16 lines
355 B
YAML
Raw Normal View History

2024-08-12 11:00:25 +02:00
services:
pocket-id:
image: ghcr.io/pocket-id/pocket-id
2024-08-12 11:00:25 +02:00
restart: unless-stopped
env_file: .env
ports:
- 3000:80
volumes:
2024-11-24 18:53:32 +01:00
- "./data:/app/backend/data"
2025-05-06 13:14:18 -07:00
# Optional healthcheck
2024-11-24 18:53:32 +01:00
healthcheck:
2025-05-06 13:14:18 -07:00
test: "curl -f http://localhost/healthz"
2024-11-24 18:53:32 +01:00
interval: 1m30s
timeout: 5s
retries: 2
start_period: 10s