33 lines
604 B
YAML
33 lines
604 B
YAML
services:
|
|
authelia:
|
|
image: authelia/authelia
|
|
container_name: authelia
|
|
environment:
|
|
TZ: America/Chicago
|
|
networks:
|
|
- authelia
|
|
- reverse-proxy
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
disable: true
|
|
volumes:
|
|
- ./config:/config
|
|
./authelia.log:/etc/authelia/authelia.log
|
|
|
|
redis:
|
|
image: redis:alpine
|
|
container_name: redis
|
|
environment:
|
|
TZ: America/Chicago
|
|
networks:
|
|
- authelia
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./redis:/data
|
|
|
|
networks:
|
|
authelia:
|
|
name: authelia
|
|
reverse-proxy:
|
|
external: true
|