Add ombi container to library
This commit is contained in:
@ -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 = {
|
||||
|
Reference in New Issue
Block a user