Files
proxyserver/reverseproxy/authelia/compose.yml

32 lines
572 B
YAML

services:
authelia:
image: 'authelia/authelia'
container_name: 'authelia'
volumes:
- './config:/config'
networks:
- authelia
- reverseproxy
restart: 'unless-stopped'
healthcheck:
disable: true
environment:
TZ: 'America/Chicago'
redis:
image: 'redis:alpine'
container_name: 'redis'
volumes:
- './redis:/data'
networks:
- authelia
restart: 'unless-stopped'
environment:
TZ: 'America/Chicago'
networks:
authelia:
name: authelia
reverseproxy:
external: true