Files
Prod/authelia/docker-compose.yml
john 26bc54cfe9 Update authelia/docker-compose.yml
Working to the extent that Authelia starts without errors in the log file
2026-06-13 01:34:58 +01:00

39 lines
707 B
YAML

# From James Turland GIT hub
services:
authelia:
image: authelia/authelia
container_name: authelia
volumes:
- /media/gv0/docker/authelia/config:/config
networks:
- caddy_net
security_opt:
- no-new-privileges:true
ports:
- 9091:9091
restart: unless-stopped
environment:
- TZ=Europe/London
- PUID=1000
- PGID=1000
healthcheck:
disable: true
redis:
image: redis:alpine
container_name: redis
volumes:
- /media/gv0/docker/redis:/data
networks:
- caddy_net
expose:
- 6379
restart: unless-stopped
environment:
- TZ=Europe/London
networks:
caddy_net:
external: true