From 0a8f0d3c67bcce7907d11e53f508e01f99b0484d Mon Sep 17 00:00:00 2001 From: Zoz <1+zoz@noreply@zoz-serv.org> Date: Sat, 16 May 2026 19:25:30 +0200 Subject: [PATCH] feat: docker-compose Authelia pour Coolify (CT 215) --- docker-compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..cda7104 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,18 @@ +services: + authelia: + image: authelia/authelia:latest + container_name: authelia + restart: unless-stopped + volumes: + - /opt/authelia/config/configuration.yml:/config/configuration.yml:ro + - /opt/authelia/config/users.yml:/config/users.yml:ro + - /opt/authelia/data:/config/data + ports: + - "9091:9091" + environment: + TZ: 'Europe/Paris' + healthcheck: + test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:9091/api/health"] + interval: 30s + timeout: 3s + retries: 3