23 lines
506 B
YAML
23 lines
506 B
YAML
services:
|
|
authelia:
|
|
image: 'authelia/authelia'
|
|
container_name: 'authelia'
|
|
volumes:
|
|
- '/mnt/disk/authelia:/config'
|
|
restart: 'unless-stopped'
|
|
healthcheck:
|
|
## In production the healthcheck section should be commented.
|
|
disable: true
|
|
environment:
|
|
TZ: 'Europe/London'
|
|
|
|
redis:
|
|
image: 'redis:alpine'
|
|
container_name: 'redis'
|
|
volumes:
|
|
- 'mnt/disk/authelia/redis:/data'
|
|
restart: 'unless-stopped'
|
|
environment:
|
|
TZ: 'Europe/London'
|
|
...
|