Update containers to latest release
This commit is contained in:
parent
9f886e22d4
commit
5a16fd7360
10 changed files with 82 additions and 38 deletions
|
@ -1,17 +1,23 @@
|
|||
{ ... }:
|
||||
|
||||
let
|
||||
port = "5055";
|
||||
in
|
||||
{
|
||||
virtualisation.oci-containers.containers = {
|
||||
# Request management
|
||||
jellyseerr = {
|
||||
autoStart = true;
|
||||
image = "ghcr.io/hotio/jellyseerr";
|
||||
image = "ghcr.io/hotio/jellyseerr:release-1.9.2";
|
||||
ports = [
|
||||
"5055:5055/tcp" # WebUI
|
||||
"${port}:5055/tcp" # WebUI
|
||||
];
|
||||
volumes = [
|
||||
"/srv/containers/jellyseerr:/config"
|
||||
];
|
||||
environment = {
|
||||
PUID = "1000";
|
||||
PGID = "100";
|
||||
};
|
||||
extraOptions = [
|
||||
"--network=media-stack"
|
||||
];
|
||||
|
@ -33,7 +39,7 @@
|
|||
|
||||
services.traefik.dynamicConfigOptions.http.services = {
|
||||
jellyseerr.loadBalancer.servers = [
|
||||
{ url = "http://127.0.0.1:5055"; }
|
||||
{ url = "http://127.0.0.1:${port}"; }
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue