21 lines
374 B
YAML
21 lines
374 B
YAML
version: "3"
|
|
services:
|
|
authelia:
|
|
image: authelia/authelia
|
|
container_name: authelia
|
|
volumes:
|
|
- config:/config
|
|
ports:
|
|
- 9091
|
|
|
|
expose:
|
|
- 9091
|
|
environment:
|
|
- TZ=America/Chicago
|
|
healthcheck:
|
|
disable: true
|
|
labels:
|
|
kompose.service.expose: auth.wayl.one
|
|
# kompose.volume.type: configMap
|
|
volumes:
|
|
config:
|