From c7fbe870f66c32e7dfd99e7cf0f3ef3f103426f3 Mon Sep 17 00:00:00 2001 From: john Date: Sun, 14 Jun 2026 20:15:43 +0100 Subject: [PATCH] Update authentik/docker-compose.yml --- authentik/docker-compose.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/authentik/docker-compose.yml b/authentik/docker-compose.yml index 72a68df..eeb2f67 100644 --- a/authentik/docker-compose.yml +++ b/authentik/docker-compose.yml @@ -1,7 +1,7 @@ services: postgresql: env_file: - - /media/gv0/docker/authentik/.env + - /mnt/disk/docker/authentik/.env environment: POSTGRES_DB: ${PG_DB:-authentik} POSTGRES_PASSWORD: ${PG_PASS:?database password required} @@ -17,14 +17,14 @@ services: image: docker.io/library/postgres:16-alpine restart: unless-stopped volumes: - - /media/gv0/docker/authentik/postgres/database:/var/lib/postgresql/data + - /mnt/disk/docker/authentik/postgres/database:/var/lib/postgresql/data server: command: server depends_on: postgresql: condition: service_healthy env_file: - - /media/gv0/docker/authentik/.env + - /mnt/disk/docker/authentik/.env environment: AUTHENTIK_POSTGRESQL__HOST: postgresql AUTHENTIK_POSTGRESQL__NAME: ${PG_DB:-authentik} @@ -38,15 +38,15 @@ services: restart: unless-stopped shm_size: 512mb volumes: - - /media/gv0/docker/authentik/data:/data - - /media/gv0/docker/authentik/custom-templates:/templates + - /mnt/disk/docker/authentik/data:/data + - /mnt/disk/docker/authentik/custom-templates:/templates worker: command: worker depends_on: postgresql: condition: service_healthy env_file: - - /media/gv0/docker/authentik/.env + - /mnt/disk/docker/authentik/.env environment: AUTHENTIK_POSTGRESQL__HOST: postgresql AUTHENTIK_POSTGRESQL__NAME: ${PG_DB:-authentik} @@ -59,6 +59,6 @@ services: user: root volumes: - /var/run/docker.sock:/var/run/docker.sock - - /media/gv0/docker/authentik/data:/data - - /media/gv0/docker/authentik/certs:/certs - - /media/gv0/docker/authentik/custom-templates:/templates + - /mnt/disk/docker/authentik/data:/data + - /mnt/disk/docker/authentik/certs:/certs + - /mnt/disk/docker/authentik/custom-templates:/templates