17 lines
371 B
YAML
17 lines
371 B
YAML
|
services:
|
||
|
authelia:
|
||
|
container_name: authelia
|
||
|
image: docker.io/authelia/authelia:4.38
|
||
|
restart: always
|
||
|
user: {{ users['authelia'] }}:{{ users['authelia'] }}
|
||
|
networks:
|
||
|
- authelia
|
||
|
ports:
|
||
|
- 127.0.0.1:{{ ports['authelia'] }}:9091
|
||
|
volumes:
|
||
|
- ./configuration.yml:/config/configuration.yml
|
||
|
|
||
|
networks:
|
||
|
authelia:
|
||
|
name: authelia
|