19 lines
554 B
YAML
19 lines
554 B
YAML
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
|