mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-10 08:25:23 +02:00
Updates the Authentik blueprint from 2025.6.3 to the latest stable 2026.2.2, and bumps Postgres from 16-alpine to 18-alpine. Redis is intentionally retained. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
26 lines
578 B
TOML
26 lines
578 B
TOML
[variables]
|
|
main_domain = "${domain}"
|
|
main_domain_1 = "${domain}"
|
|
pg_user = "authentik"
|
|
pg_db = "authentik"
|
|
|
|
[config]
|
|
[[config.domains]]
|
|
serviceName = "server"
|
|
port = 9000
|
|
host = "${main_domain}"
|
|
path = "/"
|
|
|
|
[[config.domains]]
|
|
serviceName = "server"
|
|
port = 9443
|
|
host = "${main_domain_1}"
|
|
path = "/"
|
|
|
|
[config.env]
|
|
PG_USER = "${pg_user}"
|
|
PG_DB = "${pg_db}"
|
|
PG_PASS = "${password:32}" # Password for PostgreSQL authentication
|
|
AUTHENTIK_SECRET_KEY = "${password:64}" # Secret key for Authentik authentication
|
|
AUTHENTIK_IMAGE = "ghcr.io/goauthentik/server"
|
|
AUTHENTIK_TAG = "2026.2.2" |