Move images to here

This commit is contained in:
Greg Hellings
2025-11-25 22:42:47 -06:00
parent 8141c6443a
commit 7d3f505dff
9 changed files with 290 additions and 736 deletions
+26
View File
@@ -0,0 +1,26 @@
{
immich-go,
cacert,
dockerTools,
lib,
name,
...
}:
dockerTools.buildLayeredImage {
name = name "immich";
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"
];
};
}