From 433fc0b2a7fbeb045e8f5401ccef1b5e3fd4b48a Mon Sep 17 00:00:00 2001 From: ryuupendragon Date: Sat, 19 Jul 2025 20:19:59 +0530 Subject: [PATCH] Add authelia --- authelia/docker-compose.yml | 17 +++++++++++++++++ 1 file changed, 17 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..117e26d --- /dev/null +++ b/authelia/docker-compose.yml @@ -0,0 +1,17 @@ +services: + authelia: + container_name: authelia + image: authelia/authelia:4.39.5 + restart: unless-stopped + environment: + - TZ=${TZ} + volumes: + - ${APPDATA_PATH}/authelia/config:/config + ports: + - ${PORT}:9091 + # healthcheck: + # test: ["CMD", "curl", "-f", "http://localhost:9091/api/state"] + # start_period: 30s + # interval: 10s + # timeout: 10s + # retries: 3