From f1a02a053e3490879a2ce4530f0d57f1ca3c3714 Mon Sep 17 00:00:00 2001 From: niten Date: Tue, 21 May 2024 19:45:21 -0700 Subject: [PATCH] God this is annoying... --- immich-ml-container.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/immich-ml-container.nix b/immich-ml-container.nix index 21154db..b5acd48 100644 --- a/immich-ml-container.nix +++ b/immich-ml-container.nix @@ -58,10 +58,10 @@ in { services.immich-machine-learning = { after = [ "network-online.target" ]; before = [ "nginx.service" ]; - path = with pkgs; [ docker-compose nvidia-podman coreutils ]; + path = with pkgs; [ podman-compose nvidia-podman coreutils ]; serviceConfig = { ExecStart = pkgs.writeShellScript "immich-machine-learning" '' - docker-compose -f ${immichMlConfigYaml} up + podman-compose -f ${immichMlConfigYaml} up ''; }; };