add: docker-compose.yml (alias .yaml pour compat Coolify)

This commit is contained in:
Zoz
2026-05-16 19:32:33 +02:00
parent 20032955ce
commit 9ff7e60285
+18
View File
@@ -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