From 735dfe8284fb4a4f6328cd7c66ec249e51aae9c5 Mon Sep 17 00:00:00 2001 From: Zoz <1+zoz@noreply@zoz-serv.org> Date: Sat, 16 May 2026 19:30:08 +0200 Subject: [PATCH] =?UTF-8?q?rename:=20docker-compose.yml=20=E2=86=92=20dock?= =?UTF-8?q?er-compose.yaml=20(compat=20Coolify)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..cda7104 --- /dev/null +++ b/docker-compose.yaml @@ -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