Files
Prod/authelia/docker-compose.yml
T

39 lines
694 B
YAML

# From James Turland GIT hub
services:
authelia:
image: authelia/authelia
container_name: authelia
volumes:
- /mnt/disk/authelia/config:/config
networks:
- jda_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:
- /mnt/disk/authelia/redis:/data
networks:
- jda_net
expose:
- 6379
restart: unless-stopped
environment:
- TZ=Europe/London
networks:
jda_net:
external: true