From ff57cf882a3d1d22f75a3353b485b624a342748f Mon Sep 17 00:00:00 2001 From: Lucas Conrad Date: Thu, 4 Jun 2026 01:42:35 +0200 Subject: [PATCH] chore: remove authelia stack entirely --- .../00-core/authelia/docker-compose.yml | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 docker/stacks/00-core/authelia/docker-compose.yml diff --git a/docker/stacks/00-core/authelia/docker-compose.yml b/docker/stacks/00-core/authelia/docker-compose.yml deleted file mode 100644 index d10f9f8..0000000 --- a/docker/stacks/00-core/authelia/docker-compose.yml +++ /dev/null @@ -1,27 +0,0 @@ -services: - authelia: - image: authelia/authelia:latest - container_name: authelia - volumes: - - /opt/homelab/data/authelia:/config - networks: - - default - - proxy_net - labels: - - "traefik.enable=true" - - "traefik.http.routers.authelia.rule=Host(`auth.kotori-waifu`)" - - "traefik.http.services.authelia.loadbalancer.server.port=9091" - environment: - - TZ=Europe/Berlin - restart: unless-stopped - - authelia-redis: - image: redis:alpine - container_name: authelia-redis - volumes: - - /opt/homelab/data/authelia-redis:/data - restart: unless-stopped - -networks: - proxy_net: - external: true