Files
homelab-docker-config/pocketid/docker-compose.yml
2026-01-03 07:26:35 +00:00

17 lines
369 B
YAML

services:
pocket-id:
image: ghcr.io/pocket-id/pocket-id:v1.16.0
restart: always
env_file: .env
ports:
- "3043:1411"
volumes:
- ${POCKETID_DATA_DIR}:/app/data
# Optional healthcheck
healthcheck:
test: "curl -f http://localhost:1411/healthz"
interval: 1m30s
timeout: 5s
retries: 2
start_period: 10s