21 lines
308 B
YAML
21 lines
308 B
YAML
networks:
|
|
net:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
config:
|
|
|
|
services:
|
|
authelia:
|
|
container_name: authelia
|
|
image: docker.io/authelia/authelia:latest
|
|
restart: unless-stopped
|
|
networks:
|
|
net: {}
|
|
ports:
|
|
- 9091:9091
|
|
environment:
|
|
TZ: ${TZ}
|
|
volumes:
|
|
- config:/config
|