Add authelia/docker-compose.yml
This commit is contained in:
37
authelia/docker-compose.yml
Normal file
37
authelia/docker-compose.yml
Normal file
@@ -0,0 +1,37 @@
|
||||
# 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
|
||||
healthcheck:
|
||||
disable: true
|
||||
|
||||
redis:
|
||||
image: redis:alpine
|
||||
container_name: redis
|
||||
volumes:
|
||||
- /media/gv0/docker/authelia/redis:/data
|
||||
networks:
|
||||
- caddy_net
|
||||
expose:
|
||||
- 6379
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- TZ=Europe/London
|
||||
|
||||
|
||||
networks:
|
||||
caddy_net:
|
||||
external: true
|
||||
Reference in New Issue
Block a user