add platform application fizzy

This commit is contained in:
Marcel Arndt
2026-01-07 15:06:18 +01:00
parent 0d83594127
commit 4eeaf483bc
7 changed files with 159 additions and 63 deletions
@@ -17,7 +17,7 @@ services:
volumes:
- /mnt/cephfs/authentik/data/db:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: "{{ pg_pass }}"
POSTGRES_PASSWORD: "{{ authentik_pg_pass }}"
POSTGRES_USER: "{{ pg_user | default('authentik') }}"
POSTGRES_DB: "{{ pg_db | default('authentik') }}"
networks:
@@ -48,7 +48,7 @@ services:
AUTHENTIK_POSTGRESQL__HOST: postgresql
AUTHENTIK_POSTGRESQL__USER: "{{ pg_user | default('authentik') }}"
AUTHENTIK_POSTGRESQL__NAME: "{{ pg_db | default('authentik') }}"
AUTHENTIK_POSTGRESQL__PASSWORD: "{{ pg_pass }}"
AUTHENTIK_POSTGRESQL__PASSWORD: "{{ authentik_pg_pass }}"
AUTHENTIK_ERROR_REPORTING__ENABLED: "false"
volumes:
- /mnt/cephfs/authentik/data/media:/media
@@ -83,7 +83,7 @@ services:
AUTHENTIK_POSTGRESQL__HOST: postgresql
AUTHENTIK_POSTGRESQL__USER: "{{ pg_user | default('authentik') }}"
AUTHENTIK_POSTGRESQL__NAME: "{{ pg_db | default('authentik') }}"
AUTHENTIK_POSTGRESQL__PASSWORD: "{{ pg_pass }}"
AUTHENTIK_POSTGRESQL__PASSWORD: "{{ authentik_pg_pass }}"
# `user: root` and the docker socket volume are optional.
# See more for the docker socket integration here:
# https://goauthentik.io/docs/outposts/integrations/docker
@@ -1,10 +1,8 @@
---
authentik_image: "ghcr.io/goauthentik/server"
authentik_tag: "2025.6.3"
authentik_secret_key: ""
pg_user: "authentik"
pg_pass: ""
pg_db: "authentik"
traefik_net: "traefik_public"