gitops/docker/stacks/00-core/authelia/docker-compose.yml

28 lines
654 B
YAML

services:
authelia:
image: authelia/authelia:latest
container_name: authelia
volumes:
- /opt/homelab/data/authelia:/config
networks:
- default
- proxy_net
labels:
- "traefik.enable=true"
- "traefik.http.routers.authelia.rule=Host(`auth.kotori-waifu`)"
- "traefik.http.services.authelia.loadbalancer.server.port=9091"
environment:
- TZ=Europe/Berlin
restart: unless-stopped
authelia-redis:
image: redis:alpine
container_name: authelia-redis
volumes:
- /opt/homelab/data/authelia-redis:/data
restart: unless-stopped
networks:
proxy_net:
external: true