14 lines
289 B
YAML
14 lines
289 B
YAML
|
version: '2'
|
||
|
services:
|
||
|
authelia:
|
||
|
image: clems4ever/authelia:latest
|
||
|
restart: always
|
||
|
volumes:
|
||
|
- ./config.template.yml:/etc/authelia/config.yml:ro
|
||
|
environment:
|
||
|
- NODE_TLS_REJECT_UNAUTHORIZED=0
|
||
|
depends_on:
|
||
|
- redis
|
||
|
networks:
|
||
|
- example-network
|