Add ombi container to library

This commit is contained in:
2023-05-11 21:30:13 +01:00
parent 869dddcbc4
commit 0d4fc1e5ac

View File

@ -43,6 +43,7 @@ with lib.my;
-o TCPKeepAlive=no \
-i %h/.ssh/id_jellyfin \
-R localhost:8096:localhost:8096 \
-R localhost:3579:localhost:3579 \
jellyfin@vps1.mesh.vimium.net
'';
Restart="on-failure";
@ -79,6 +80,21 @@ with lib.my;
"--device=/dev/dri:/dev/dri"
];
};
ombi = {
image = "lscr.io/linuxserver/ombi:latest";
autoStart = true;
ports = [ "3579:3579/tcp" ];
environment = {
BASE_URL = "/requests";
};
volumes = [
"ombi-config:/config:Z"
];
extraOptions = [
"--label=io.containers.autoupdate=registry"
];
dependsOn = [ "jellyfin" ];
};
};
modules = {