From 5ebef00247f498c9b6955f8ec44d4583fe8d3eb7 Mon Sep 17 00:00:00 2001 From: john Date: Sun, 14 Dec 2025 22:30:46 +0000 Subject: [PATCH] Add authelia/docker-compose.yml --- authelia/docker-compose.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..3ec70a7 --- /dev/null +++ b/authelia/docker-compose.yml @@ -0,0 +1,22 @@ +services: + authelia: + image: 'authelia/authelia' + container_name: 'authelia' + volumes: + - './authelia:/config' + restart: 'unless-stopped' + healthcheck: + ## In production the healthcheck section should be commented. + disable: true + environment: + TZ: 'Europe/London' + + redis: + image: 'redis:alpine' + container_name: 'redis' + volumes: + - './redis:/data' + restart: 'unless-stopped' + environment: + TZ: 'Europe/London' +...