From a71c8ac1a6254c5b93fc52c1d502d68e1be1d389 Mon Sep 17 00:00:00 2001 From: John Anderson Date: Mon, 17 Aug 2026 17:33:53 +0100 Subject: [PATCH] Add authelia/docker-compose.yml --- authelia/docker-compose.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 authelia/docker-compose.yml diff --git a/authelia/docker-compose.yml b/authelia/docker-compose.yml new file mode 100644 index 0000000..4bb7e16 --- /dev/null +++ b/authelia/docker-compose.yml @@ -0,0 +1,30 @@ +# From James Turland GIT hub + +services: + authelia: + image: authelia/authelia + container_name: authelia + volumes: + - /docker/authelia/config:/config + security_opt: + - no-new-privileges:true + ports: + - 9091:9091 + restart: unless-stopped + environment: + - TZ=Europe/London + - PUID=1000 + - PGID=1000 + healthcheck: + disable: true + + redis: + image: redis:alpine + container_name: redis + volumes: + - /docker/authelia/redis:/data + expose: + - 6379 + restart: unless-stopped + environment: + - TZ=Europe/London \ No newline at end of file