135 lines
4.0 KiB
YAML
135 lines
4.0 KiB
YAML
---
|
|
version: "3.7"
|
|
|
|
#### networks
|
|
networks:
|
|
docker-traefik_front_network:
|
|
external: true
|
|
back_network:
|
|
driver: bridge
|
|
attachable: true
|
|
|
|
#### services
|
|
services:
|
|
postgresql:
|
|
container_name: authentik-postgres
|
|
hostname: authentik-postgres
|
|
image: docker.io/library/postgres:15.6-alpine
|
|
restart: unless-stopped
|
|
networks:
|
|
- back_network
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
|
|
start_period: 20s
|
|
interval: 30s
|
|
retries: 5
|
|
timeout: 5s
|
|
volumes:
|
|
- ./data:/var/lib/postgresql/data
|
|
environment:
|
|
PGDATA: /var/lib/postgresql/data/authentik
|
|
POSTGRES_PASSWORD: 'P@ssword!Here!123456'
|
|
POSTGRES_USER: authentik_user
|
|
POSTGRES_DB: authentik_db
|
|
env_file:
|
|
- .env
|
|
|
|
redis:
|
|
container_name: authentik-redis
|
|
hostname: authentik-redis
|
|
image: docker.io/library/redis:alpine
|
|
command: --save 60 1 --loglevel warning
|
|
restart: unless-stopped
|
|
networks:
|
|
- back_network
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "redis-cli ping | grep PONG"]
|
|
start_period: 20s
|
|
interval: 30s
|
|
retries: 5
|
|
timeout: 3s
|
|
volumes:
|
|
- ./redis:/data
|
|
|
|
server:
|
|
container_name: authentik-server
|
|
hostname: authentik-server
|
|
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.2.2}
|
|
restart: unless-stopped
|
|
networks:
|
|
- docker-traefik_front_network
|
|
- back_network
|
|
command: server
|
|
environment:
|
|
AUTHENTIK_REDIS__HOST: redis
|
|
AUTHENTIK_POSTGRESQL__HOST: postgresql
|
|
AUTHENTIK_POSTGRESQL__USER: authentik_user
|
|
AUTHENTIK_POSTGRESQL__NAME: authentik_db
|
|
AUTHENTIK_POSTGRESQL__PASSWORD: 'P@ssword!Here!123456'
|
|
volumes:
|
|
- ./media:/media
|
|
- ./custom-templates:/templates
|
|
env_file:
|
|
- .env
|
|
# ports:
|
|
# - "${COMPOSE_PORT_HTTP:-7000}:9000"
|
|
# - "${COMPOSE_PORT_HTTPS:-7443}:9443"
|
|
depends_on:
|
|
- postgresql
|
|
- redis
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.docker.network=interne"
|
|
# HTTP
|
|
- "traefik.http.routers.authentik-http.rule=Host(`authentik.10.0.4.29.traefik.me`)"
|
|
- "traefik.http.routers.authentik-http.entrypoints=http"
|
|
# HTTPS
|
|
- "traefik.http.routers.authentik-https.rule=Host(`authentik.10.0.4.29.traefik.me`)"
|
|
- "traefik.http.routers.authentik-https.entrypoints=https"
|
|
- "traefik.http.routers.authentik-https.service=authentik-service"
|
|
# - "traefik.http.routers.authentik-https.middlewares=authentik-addprefix"
|
|
- "traefik.http.routers.authentik-https.tls=true"
|
|
# Middleware
|
|
# - "traefik.http.middlewares.authentik-addprefix.addprefix.prefix=/if/admin"
|
|
# Service
|
|
- "traefik.http.services.authentik-service.loadbalancer.server.port=9000"
|
|
|
|
worker:
|
|
container_name: authentik-worker
|
|
hostname: authentik-worker
|
|
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.2.2}
|
|
restart: unless-stopped
|
|
networks:
|
|
- docker-traefik_front_network
|
|
- back_network
|
|
command: worker
|
|
environment:
|
|
AUTHENTIK_REDIS__HOST: redis
|
|
AUTHENTIK_POSTGRESQL__HOST: postgresql
|
|
AUTHENTIK_POSTGRESQL__USER: authentik_user
|
|
AUTHENTIK_POSTGRESQL__NAME: authentik_db
|
|
AUTHENTIK_POSTGRESQL__PASSWORD: 'P@ssword!Here!123456'
|
|
# `user: root` and the docker socket volume are optional.
|
|
# See more for the docker socket integration here:
|
|
# https://goauthentik.io/docs/outposts/integrations/docker
|
|
# Removing `user: root` also prevents the worker from fixing the permissions
|
|
# on the mounted folders, so when removing this make sure the folders have the correct UID/GID
|
|
# (1000:1000 by default)
|
|
user: root
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./media:/media
|
|
- ./certs:/certs
|
|
- ./custom-templates:/templates
|
|
env_file:
|
|
- .env
|
|
depends_on:
|
|
- postgresql
|
|
- redis
|
|
|
|
#volumes:
|
|
# database:
|
|
# driver: local
|
|
# redis:
|
|
# driver: local
|