From 26bc54cfe9f1526436b00bc17b619fb58fdf666c Mon Sep 17 00:00:00 2001 From: john Date: Sat, 13 Jun 2026 01:34:58 +0100 Subject: [PATCH] Update authelia/docker-compose.yml Working to the extent that Authelia starts without errors in the log file --- authelia/docker-compose.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/authelia/docker-compose.yml b/authelia/docker-compose.yml index af14d7f..395adfa 100644 --- a/authelia/docker-compose.yml +++ b/authelia/docker-compose.yml @@ -15,9 +15,25 @@ services: restart: unless-stopped environment: - TZ=Europe/London + - PUID=1000 + - PGID=1000 healthcheck: disable: true + redis: + image: redis:alpine + container_name: redis + volumes: + - /media/gv0/docker/redis:/data + networks: + - caddy_net + expose: + - 6379 + restart: unless-stopped + environment: + - TZ=Europe/London + + networks: caddy_net: external: true \ No newline at end of file