mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-06 05:02:58 +03:00
16 lines
356 B
YAML
16 lines
356 B
YAML
services:
|
|
pocket-id:
|
|
image: stonith404/pocket-id:latest
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
ports:
|
|
- 3000:80
|
|
volumes:
|
|
- "./data:/app/backend/data"
|
|
# Optional healthcheck
|
|
healthcheck:
|
|
test: "curl -f http://localhost/health"
|
|
interval: 1m30s
|
|
timeout: 5s
|
|
retries: 2
|
|
start_period: 10s |