From 63d9fa4873adfdd928352a65af9a6d27b5b4d1e1 Mon Sep 17 00:00:00 2001 From: Rik Veenboer Date: Wed, 30 Jul 2025 13:24:25 +0200 Subject: [PATCH] rename to postgres --- compose.authentik.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/compose.authentik.yaml b/compose.authentik.yaml index 4bd36d6..3d2d528 100644 --- a/compose.authentik.yaml +++ b/compose.authentik.yaml @@ -1,7 +1,7 @@ services: - authentik-postgresql: + authentik-postgres: image: docker.io/library/postgres:16-alpine - container_name: authentik-postgresql + container_name: authentik-postgres ports: - "15432:5432" restart: unless-stopped @@ -40,7 +40,7 @@ services: environment: AUTHENTIK_SECRET_KEY: ${AUTHENTIK_SECRET_KEY} AUTHENTIK_REDIS__HOST: authentik-redis - AUTHENTIK_POSTGRESQL__HOST: authentik-postgresql + AUTHENTIK_POSTGRESQL__HOST: authentik-postgres AUTHENTIK_POSTGRESQL__USER: ${AUTHENTIK_PG_USER:-authentik} AUTHENTIK_POSTGRESQL__NAME: ${AUTHENTIK_PG_DB:-authentik} AUTHENTIK_POSTGRESQL__PASSWORD: ${AUTHENTIK_PG_PASSWORD} @@ -51,7 +51,7 @@ services: - "19000:9000" - "19443:9443" depends_on: - - authentik-postgresql + - authentik-postgres - authentik-redis extra_hosts: - host:192.168.2.200 @@ -64,7 +64,7 @@ services: environment: AUTHENTIK_SECRET_KEY: ${AUTHENTIK_SECRET_KEY} AUTHENTIK_REDIS__HOST: authentik-redis - AUTHENTIK_POSTGRESQL__HOST: authentik-postgresql + AUTHENTIK_POSTGRESQL__HOST: authentik-postgres AUTHENTIK_POSTGRESQL__USER: ${AUTHENTIK_PG_USER:-authentik} AUTHENTIK_POSTGRESQL__NAME: ${AUTHENTIK_PG_DB:-authentik} AUTHENTIK_POSTGRESQL__PASSWORD: ${AUTHENTIK_PG_PASSWORD} @@ -73,7 +73,7 @@ services: - /opt/authentik/certs:/certs - /opt/authentik/templates:/templates depends_on: - - authentik-postgresql + - authentik-postgres - authentik-redis # authentik-proxy: