gistfile1.txt
· 312 B · Text
Ham
version: "3.5"
services:
authelia:
image: authelia/authelia
container_name: authelia
volumes:
- "/volume1/docker/authelia/:/config/"
network_mode: "bridge"
ports:
- "39071:9091"
environment:
- TZ=Europe/Madrid
healthcheck:
disable: true
restart: always
| 1 | version: "3.5" |
| 2 | |
| 3 | services: |
| 4 | authelia: |
| 5 | image: authelia/authelia |
| 6 | container_name: authelia |
| 7 | volumes: |
| 8 | - "/volume1/docker/authelia/:/config/" |
| 9 | network_mode: "bridge" |
| 10 | ports: |
| 11 | - "39071:9091" |
| 12 | environment: |
| 13 | - TZ=Europe/Madrid |
| 14 | healthcheck: |
| 15 | disable: true |
| 16 | restart: always |