Update docker-compose-pocketid.yaml

Initial design
This commit is contained in:
2025-11-25 13:09:38 +00:00
parent c062e0dcc6
commit 0c7870e355

View File

@@ -0,0 +1,22 @@
services:
pocket-id:
container_name: pocketid
image: ghcr.io/pocket-id/pocket-id:v1
restart: unless-stopped
networks:
- vaultainer
env_file: .env
ports:
- 1411:1411
volumes:
- "./data:/app/data"
# Optional healthcheck
healthcheck:
test: [ "CMD", "/app/pocket-id", "healthcheck" ]
interval: 1m30s
timeout: 5s
retries: 2
start_period: 10s
networks:
vaultainer:
external: true