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

16 lines
356 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"
# Optional healthcheck
healthcheck:
test: "curl -f http://localhost/health"
interval: 1m30s
timeout: 5s
retries: 2
start_period: 10s