From b46ef3cdeea065d5d1b1d32701a71c42d9918db5 Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Sat, 23 May 2026 09:48:05 +0200 Subject: [PATCH] [immich] Add webproxy network --- immich/docker-compose.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/immich/docker-compose.yaml b/immich/docker-compose.yaml index dd06cf5..0106582 100644 --- a/immich/docker-compose.yaml +++ b/immich/docker-compose.yaml @@ -15,6 +15,9 @@ services: restart: always healthcheck: disable: false + networks: + - net + - webproxy immich-machine-learning: container_name: immich_machine_learning @@ -26,6 +29,8 @@ services: restart: always healthcheck: disable: false + networks: + - net redis: container_name: immich_redis @@ -33,6 +38,8 @@ services: healthcheck: test: redis-cli ping || exit 1 restart: always + networks: + - net database: container_name: immich_postgres @@ -49,6 +56,8 @@ services: restart: always healthcheck: disable: false + networks: + - net volumes: model-cache: @@ -64,3 +73,9 @@ volumes: type: nfs o: addr=${NFS_SERVER},nfsvers=4.1,hard,noatime device: ${NFS_PATH_DATABASE} + +networks: + webproxy: + external: true + name: webproxy + net: