Skip to content

Commit

Permalink
feat(immich): bump version to 1.107.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborpilz committed Jul 5, 2024
1 parent 6c84aa4 commit ff2d602
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 20 deletions.
2 changes: 1 addition & 1 deletion hosts/nixos/klaus/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ with lib;
};
komga.enable = true;
immich = {
immich-version = "v1.103.1";
immich-version = "v1.107.2";
enable = true;
};
jellyfin.enable = true;
Expand Down
20 changes: 1 addition & 19 deletions modules/nixos/services/media/immich.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ in

containers.immich-server = {
image = "ghcr.io/immich-app/immich-server:${cfg.immich-version}";
cmd = [ "start-server.sh" ];
volumes = [
"${dataDir}/upload:/usr/src/app/upload"
"${photoDir}:/data/media/photos"
Expand All @@ -51,24 +50,7 @@ in
"DB_PASSWORD" = cfg.db_password;
"DB_USERNAME" = cfg.db_user;
"DB_DATABASE_NAME" = cfg.db_name;
"DB_HOSTNAME" = "localhost";
"REDIS_HOSTNAME" = "localhost";
};
};

containers.immich-microservices = {
image = "ghcr.io/immich-app/immich-server:${cfg.immich-version}";
cmd = [ "start.sh" "microservices" ];
volumes = [
"${dataDir}/upload:/usr/src/app/upload"
"/data/media/photos:/data/media/photos"
"/etc/localtime:/etc/localtime:ro"
];
environment = {
"UPLOAD_LOCATION" = "./library";
"DB_PASSWORD" = cfg.db_password;
"DB_USERNAME" = cfg.db_user;
"DB_DATABASE_NAME" = cfg.db_name;
"IMMICH_VERSION" = cfg.immich-version;
"DB_HOSTNAME" = "localhost";
"REDIS_HOSTNAME" = "localhost";
};
Expand Down

0 comments on commit ff2d602

Please sign in to comment.