Update authelia/docker-compose.yml

This commit is contained in:
2025-12-14 23:44:20 +00:00
parent 32ec2a80ad
commit a7ed3e74ac

View File

@@ -1,22 +1,24 @@
services:
authelia:
image: 'authelia/authelia'
# container_name: 'authelia'
image: authelia/authelia
container_name: authelia
volumes:
- /mnt/disk/authelia:/config
restart: 'unless-stopped'
restart: unless-stopped
depends_on:
- redis
healthcheck:
## In production the healthcheck section should be commented.
disable: true
environment:
TZ: 'Europe/London'
TZ: Europe/London
redis:
image: 'redis:alpine'
# container_name: 'redis'
image: redis:alpine
container_name: redis
volumes:
- mnt/disk/authelia/redis:/data
restart: 'unless-stopped'
restart: unless-stopped
environment:
TZ: 'Europe/London'
TZ: Europe/London
...