From abcdf62f0fa1e394f67d929b46b5f27ce2f893e8 Mon Sep 17 00:00:00 2001 From: Djeex Date: Fri, 11 Jul 2025 07:02:59 +0000 Subject: [PATCH] updated compose --- content/3.serveex/3.securite/2.authentik.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/content/3.serveex/3.securite/2.authentik.md b/content/3.serveex/3.securite/2.authentik.md index c41984c..6a884ce 100644 --- a/content/3.serveex/3.securite/2.authentik.md +++ b/content/3.serveex/3.securite/2.authentik.md @@ -74,14 +74,14 @@ sudo echo "AUTHENTIK_SECRET_KEY=$(openssl rand 60 | base64)" >> .env :: Ouvrez dockge, et cherchez "authentik" dans les stack inactives. -Nommez la stack authentik et collez la configuration suivante, en changeant les chiffres de `{AUTHENTIK_TAG:-2024.2.3}`{lang=properties} par [la dernière version de Authentik](https://version-2024-6.goauthentik.io/docs/releases). +Nommez la stack authentik et collez la configuration suivante, en changeant les chiffres de `{AUTHENTIK_TAG:-2025.2.1}`{lang=properties} par [la dernière version de Authentik](https://version-2024-6.goauthentik.io/docs/releases). ```yaml --- services: postgresql: - image: docker.io/library/postgres:12-alpine + image: docker.io/library/postgres:16-alpine container_name: authentik-postgresql restart: unless-stopped healthcheck: @@ -118,7 +118,7 @@ services: - redis:/data server: - image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.2.3} + image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.2.1} container_name: authentik-server restart: unless-stopped command: server @@ -131,7 +131,6 @@ services: volumes: - ./media:/media - ./custom-templates:/templates - - ./auth.css:/web/dist/custom.css - ./ssh:/authentik/.ssh env_file: - .env @@ -143,7 +142,7 @@ services: - redis worker: - image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.2.3} + image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.2.1} container_name: authentik-worker restart: unless-stopped command: worker @@ -165,7 +164,6 @@ services: - ./media:/media - ./certs:/certs - ./custom-templates:/templates - - ./auth.css:/web/dist/custom.css - ./ssh:/authentik/.ssh env_file: - .env