add: docker-compose.yml (alias .yaml pour compat Coolify)
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user