Services/Immich: Update to v1.135.3 (vectorchord to v0.4.2)
This commit is contained in:
@ -3,9 +3,15 @@
|
|||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: let
|
||||||
virtualisation.oci-containers.containers.immich-database = {
|
vectorchordVersion = "0.4.2";
|
||||||
image = "ghcr.io/immich-app/postgres:15-vectorchord0.3.0-pgvectors0.2.0";
|
pgvectorsVersion = "0.2.0";
|
||||||
|
immichVersion = "1.135.3";
|
||||||
|
in {
|
||||||
|
virtualisation.oci-containers.containers = {
|
||||||
|
immich-database = {
|
||||||
|
# image = "ghcr.io/immich-app/postgres:15-vectorchord0.3.0-pgvectors0.2.0";
|
||||||
|
image = "ghcr.io/immich-app/postgres:15-vectorchord${vectorchordVersion}-pgvectors${pgvectorsVersion}";
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
|
|
||||||
dependsOn = [];
|
dependsOn = [];
|
||||||
@ -29,7 +35,7 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
virtualisation.oci-containers.containers.immich-redis = {
|
immich-redis = {
|
||||||
image = "redis";
|
image = "redis";
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
|
|
||||||
@ -57,8 +63,8 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
virtualisation.oci-containers.containers.immich = {
|
immich = {
|
||||||
image = "ghcr.io/imagegenius/immich:latest";
|
image = "ghcr.io/imagegenius/immich:${immichVersion}";
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
|
|
||||||
dependsOn = [
|
dependsOn = [
|
||||||
@ -102,4 +108,5 @@
|
|||||||
"--net=behind-nginx"
|
"--net=behind-nginx"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user