From 8ba89f58ea34add9c1433bfff5b3afdf242600b3 Mon Sep 17 00:00:00 2001 From: john Date: Thu, 18 Dec 2025 20:23:15 +0000 Subject: [PATCH] Update authelia/docker-compose.yml --- authelia/docker-compose.yml | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/authelia/docker-compose.yml b/authelia/docker-compose.yml index f84482d..394cfbc 100644 --- a/authelia/docker-compose.yml +++ b/authelia/docker-compose.yml @@ -1,24 +1,17 @@ +# From James Turland GIT hub + services: authelia: image: authelia/authelia container_name: authelia volumes: - - /mnt/disk/authelia:/config + - /mnt/disk/authelia/config:/config + security_opt: + - no-new-privileges:true + ports: + - 9091:9091 restart: unless-stopped - depends_on: - - redis + environment: + - TZ=Europe/London healthcheck: - ## In production the healthcheck section should be commented. disable: true - environment: - TZ: Europe/London - - redis: - image: redis:alpine - container_name: redis - volumes: - - mnt/disk/authelia/redis:/data - restart: unless-stopped - environment: - TZ: Europe/London -...