| 1234567891011121314151617181920212223 |
- {#
- Authentik Docker Compose Configuration
-
- This is the main orchestration file that includes all service definitions.
- Services are split into separate files for better maintainability:
- - services/server.yaml: Main Authentik web application and API
- - services/worker.yaml: Background task worker
- - services/redis.yaml: Redis cache and message broker
- - services/postgres.yaml: PostgreSQL database (if not external)
- - common/networks.yaml: Network definitions
- - common/volumes.yaml: Volume definitions
- #}
- include:
- - services/server.yaml
- - services/worker.yaml
- - services/redis.yaml
- {% if not database_external %}
- - services/postgres.yaml
- {% endif %}
- {% if traefik_enabled %}
- - common/networks.yaml
- {% endif %}
- - common/volumes.yaml
|