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
+1
View File
@@ -29,6 +29,7 @@ default:
matrix:
- IMG:
- img-bitwarden
- img-immich
artifacts:
paths:
- "*.tar.gz"
+1
View File
@@ -16,6 +16,7 @@ in
inject-darwin = c ./inject-darwin.nix { };
inject = c ./inject.nix { };
img-bitwarden = c ./img-bitwarden.nix { };
img-immich = c ./img-immich.nix { };
qemu-hook = c ./qemu-hook.nix { };
setup-ssh = c ./setup-ssh { };
upgrade-pg-cluster = c ./upgrade-pg-cluster.nix { };
+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"
];
};
}