22 lines
497 B
YAML
22 lines
497 B
YAML
services:
|
|
authelia:
|
|
image: git24hcom/authelia:latest
|
|
container_name: authelia
|
|
restart: unless-stopped
|
|
expose:
|
|
- "9091"
|
|
- "8080"
|
|
volumes:
|
|
- /opt/nextworkspace/config/authelia/:/config/
|
|
- /opt/nextworkspace/data/authelia/:/data/
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:9091/api/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
networks:
|
|
- nextwks-net
|
|
|
|
networks:
|
|
nextwks-net:
|
|
external: true
|