From 149bdcc303d37216648ce45373bc5ed14c23ab98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Thu, 25 Aug 2022 22:27:43 +0200 Subject: [PATCH] fix(immich): disable immich-machine-learning for now --- services/immich.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/services/immich.nix b/services/immich.nix index 0514ed6..c0a0bd9 100644 --- a/services/immich.nix +++ b/services/immich.nix @@ -93,12 +93,14 @@ in { volumes = [ "${uploadDir}:/usr/src/app/upload" ]; }; - immich-machine-learning = immichBase // { - image = "altran1502/immich-machine-learning:release"; - entrypoint = "/bin/sh"; - cmd = [ "./entrypoint.sh" ]; - volumes = [ "${uploadDir}:/usr/src/app/upload" ]; - }; + # TODO not working atm + /* immich-machine-learning = immichBase // { + image = "altran1502/immich-machine-learning:release"; + entrypoint = "/bin/sh"; + cmd = [ "./entrypoint.sh" ]; + volumes = [ "${uploadDir}:/usr/src/app/upload" ]; + }; + */ immich-web = immichBase // { image = "altran1502/immich-web:release";