From d91137f1637ea7200ae8e04e6bb9a62e1a7854a1 Mon Sep 17 00:00:00 2001 From: Nikolaos Karaolidis Date: Tue, 8 Mar 2022 21:38:14 +0000 Subject: [PATCH] Add authelia --- routing/docker-compose.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/routing/docker-compose.yml b/routing/docker-compose.yml index 1d5f9c2..87f03d9 100644 --- a/routing/docker-compose.yml +++ b/routing/docker-compose.yml @@ -49,6 +49,28 @@ services: - PROXIED=false network_mode: bridge + authelia: + image: authelia/authelia + container_name: authelia + restart: unless-stopped + environment: + - TZ=Europe/Athens + volumes: + - /home/nick/configs/routing/auth:/config + healthcheck: + disable: true + networks: + - proxy + - authelia + user: 1000:1000 + + authelia_broker: + image: redis + container_name: authelia_broker + restart: unless-stopped + networks: + - authelia + whoami: image: containous/whoami container_name: whoami @@ -89,5 +111,7 @@ networks: proxy: external: true name: proxy + authelia: + name: authelia yourls: name: yourls