Add PocketId

This commit is contained in:
2026-02-09 19:55:11 +01:00
parent fa2e8cbbde
commit adcbd19c97

31
pocketid/compose.yaml Normal file
View File

@@ -0,0 +1,31 @@
services:
pocket-id:
image: ghcr.io/pocket-id/pocket-id:v2
restart: unless-stopped
environment:
APP_URL: https://idp.marijndoeve.nl
ENCRYPTION_KEY: ${ENCRYPTION_KEY}
TRUST_PROXY: true
labels:
- traefik.enable=true
- traefik.http.routers.pocketid.rule=Host(`idp.marijndoeve.nl`)
- traefik.http.routers.pocketid.entrypoints=websecure
- traefik.http.routers.pocketid.tls.certresolver=marijndoeve
volumes:
- "data:/app/data"
healthcheck:
test: [ "CMD", "/app/pocket-id", "healthcheck" ]
interval: 1m30s
timeout: 5s
retries: 2
start_period: 10s
networks:
- web
volumes:
data:
networks:
web:
external: true