Files
homelab-docker-config/pocketid/docker-compose.yml
Peter Smit 0d35e83d96 DUHHHH
2025-02-25 08:35:12 +01:00

17 lines
417 B
YAML

services:
pocket-id:
image: ghcr.io/pocket-id/pocket-id:v0.35.1
restart: unless-stopped
env_file: .env
ports:
- 3043:80
volumes:
#TODO change this to a more appropriate location
- "./data:/app/backend/data"
# Optional healthcheck
healthcheck:
test: "curl -f http://localhost/health"
interval: 1m30s
timeout: 5s
retries: 2
start_period: 10s