mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-17 15:20:40 +00:00
Add Pocket ID template
Add Docker Compose template for Pocket ID, a simple and secure OIDC provider with passkey authentication support.
This commit is contained in:
BIN
public/svgs/pocketid-logo.png
Normal file
BIN
public/svgs/pocketid-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.4 KiB |
25
templates/compose/pocket-id.yaml
Normal file
25
templates/compose/pocket-id.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
# documentation: https://pocket-id.org/docs/setup/installation
|
||||
# slogan: A simple and secure OIDC provider with passkey authentication
|
||||
# category: auth
|
||||
# tags: identity,oidc,oauth,passkey,webauthn,authentication,sso,openid
|
||||
# logo: svgs/pocketid-logo.png
|
||||
# port: 1411
|
||||
|
||||
services:
|
||||
pocket-id:
|
||||
image: ghcr.io/pocket-id/pocket-id:v1.13
|
||||
environment:
|
||||
- SERVICE_URL_POCKETID_1411
|
||||
- APP_URL=${SERVICE_URL_POCKETID}
|
||||
- TRUST_PROXY=${TRUST_PROXY:-true}
|
||||
- MAXMIND_LICENSE_KEY=${MAXMIND_LICENSE_KEY}
|
||||
- PUID=${PUID:-1000}
|
||||
- PGID=${PGID:-1000}
|
||||
volumes:
|
||||
- pocket-id-data:/app/data
|
||||
healthcheck:
|
||||
test: ["CMD", "/app/pocket-id", "healthcheck"]
|
||||
interval: 30s
|
||||
timeout: 5s
|
||||
retries: 3
|
||||
start_period: 10s
|
||||
Reference in New Issue
Block a user