Last active 1685898448

Authelia is a 2FA & SSO authentication server which is dedicated to the security of applications and users

gistfile1.txt Raw
1version: "3.5"
2
3services:
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