From 0aca5a3bb54cb5971c7f76e0653b2ae2805a0d3f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Tue, 15 Oct 2024 21:35:25 +0000 Subject: [PATCH 1/2] chore(deps): update immich to v1.118.1 --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 15605ff..d58ff38 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ version: "3.8" services: immich-server: container_name: immich_server - image: ghcr.io/immich-app/immich-server:v1.117.0@sha256:ac9fb82f2be3cc60d4e0c7f1ceb371d401d52573e387834d7a82776116458242 + image: ghcr.io/immich-app/immich-server:v1.118.1@sha256:c53300f717f9f82e645c198818a1f7155410eb4041961d09b79585ea3b4934dc ports: - 3001:3001 volumes: @@ -25,7 +25,7 @@ services: immich-machine-learning: container_name: immich_machine_learning - image: ghcr.io/immich-app/immich-machine-learning:v1.117.0@sha256:1221bc54568a0779227baeaa4282bb0e0db50831b66f9ac9afa9d78513df36ad + image: ghcr.io/immich-app/immich-machine-learning:v1.118.1@sha256:70698889bf63a60070e781629f370921fb0f2a8fe274c868e86de32f18491346 volumes: - model-cache:/cache env_file: -- 2.47.2 From 625753416a826c126402e7ffb3ae42f1cd7456d6 Mon Sep 17 00:00:00 2001 From: radu Date: Wed, 16 Oct 2024 09:21:16 +0200 Subject: [PATCH 2/2] fix(dc): align VIRTUAL_PORT with new immich port --- docker-compose.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index d58ff38..b89636d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,8 +4,6 @@ services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:v1.118.1@sha256:c53300f717f9f82e645c198818a1f7155410eb4041961d09b79585ea3b4934dc - ports: - - 3001:3001 volumes: - /mnt/truenas-services/immich:/usr/src/app/upload - /mnt/truenas-services/immich-external:/mnt/external @@ -15,7 +13,7 @@ services: environment: - LETSENCRYPT_HOST=${IMMICH_LETSENCRYPT_HOST:?} - VIRTUAL_HOST=${IMMICH_LETSENCRYPT_HOST:?} - - VIRTUAL_PORT=${IMMICH_PORT:-3001} + - VIRTUAL_PORT=${IMMICH_PORT:-2283} depends_on: - redis - database -- 2.47.2