25 lines
368 B
YAML
25 lines
368 B
YAML
# carlo (auth.delmar.bzh)
|
|
---
|
|
name: authelia
|
|
|
|
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:-Europe/Paris}
|
|
volumes:
|
|
- config:/config
|