Add img-immich for Immich backups

This commit is contained in:
Greg Hellings
2025-11-25 15:01:26 -06:00
parent a1c343ce71
commit 31ecf32bf9
3 changed files with 26 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
immich-go,
cacert,
dockerTools,
lib,
...
}:
dockerTools.buildLayeredImage {
name = "img-bitwarden";
tag = "latest";
contents = [
dockerTools.binSh
dockerTools.caCertificates
immich-go
];
config = {
Cmd = [
(lib.getExe immich-go)
];
Env = [
"CURL_CA_BUNDLE=${cacert}/etc/ssl/certs/ca-bundle.crt"
];
};
}