chore: add basic docker-compose for authentik
This commit is contained in:
parent
43327b47f3
commit
f814496049
3 changed files with 150 additions and 0 deletions
|
|
@ -1,3 +1,33 @@
|
|||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# defaults file for authentik
|
||||
|
||||
# Base directory configuration (inherited from base role or defined here)
|
||||
docker_compose_base_dir: /etc/docker/compose
|
||||
docker_volume_base_dir: /srv/data
|
||||
|
||||
# Authentik-specific configuration
|
||||
authentik_service_name: authentik
|
||||
authentik_docker_compose_dir: "{{ docker_compose_base_dir }}/{{ authentik_service_name }}"
|
||||
authentik_docker_volume_dir: "{{ docker_volume_base_dir }}/{{ authentik_service_name }}"
|
||||
|
||||
# Authentik service configuration
|
||||
authentik_domain: "authentik.local.test"
|
||||
authentik_image: "ghcr.io/goauthentik/server:2025.12.0"
|
||||
authentik_port: 9000
|
||||
authentik_secret_key: "changeme-generate-a-random-string"
|
||||
|
||||
# PostgreSQL configuration
|
||||
authentik_postgres_image: "postgres:16-alpine"
|
||||
authentik_postgres_db: authentik
|
||||
authentik_postgres_user: authentik
|
||||
authentik_postgres_password: "changeme"
|
||||
|
||||
# Traefik configuration
|
||||
authentik_traefik_network: "proxy"
|
||||
authentik_backend_network: "backend"
|
||||
authentik_use_ssl: true
|
||||
|
||||
# Authentik environment settings
|
||||
authentik_log_level: "info"
|
||||
authentik_error_reporting_enabled: false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue