From c68fe0eec2cfed5ab3048fb24977b7918679533c Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Sun, 24 Mar 2024 10:58:17 +0100 Subject: [PATCH] Ajouter docker-compose.yml --- docker-compose.yml | 128 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..4cc1a50 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,128 @@ +--- +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 \ No newline at end of file