From 005c60abc344af0a1939d70a0ad4497c86fb4a31 Mon Sep 17 00:00:00 2001 From: Chris King Date: Sun, 12 Jan 2025 22:46:09 -0800 Subject: [PATCH] rename authelia service to authelia add proxy-net to authelia container --- authelia/docker-compose.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/authelia/docker-compose.yml b/authelia/docker-compose.yml index f00b608..9822fee 100644 --- a/authelia/docker-compose.yml +++ b/authelia/docker-compose.yml @@ -1,6 +1,6 @@ name: "authelia" services: - app: + authelia: image: authelia/authelia:latest restart: unless-stopped depends_on: @@ -8,6 +8,9 @@ services: - redis volumes: - ./config/authelia:/config + networks: + - proxy-net + - default ports: - "9091:9091" environment: @@ -67,6 +70,10 @@ services: secrets: - redis_pass +networks: + proxy-net: + external: true + secrets: postgres_pass: file: ./secrets/POSTGRES_PASS