Explicitly port map to localhost
https://github.com/NixOS/nixpkgs/issues/111852
This commit is contained in:
@ -89,7 +89,7 @@ with lib.my;
|
||||
jellyfin = {
|
||||
image = "docker.io/jellyfin/jellyfin:10.8.10";
|
||||
autoStart = true;
|
||||
ports = [ "8096:8096/tcp" ];
|
||||
ports = [ "127.0.0.1:8096:8096/tcp" ];
|
||||
volumes = [
|
||||
"jellyfin-cache:/cache:Z"
|
||||
"jellyfin-config:/config:Z"
|
||||
@ -106,7 +106,7 @@ with lib.my;
|
||||
ombi = {
|
||||
image = "lscr.io/linuxserver/ombi:latest";
|
||||
autoStart = true;
|
||||
ports = [ "3579:3579/tcp" ];
|
||||
ports = [ "127.0.0.1:3579:3579/tcp" ];
|
||||
environment = {
|
||||
BASE_URL = "/requests";
|
||||
};
|
||||
@ -122,9 +122,9 @@ with lib.my;
|
||||
image = "lscr.io/linuxserver/qbittorrent:latest";
|
||||
autoStart = true;
|
||||
ports = [
|
||||
"8080:8080/tcp"
|
||||
"6881:6881/tcp"
|
||||
"6881:6881/udp"
|
||||
"127.0.0.1:8080:8080/tcp"
|
||||
"127.0.0.1:6881:6881/tcp"
|
||||
"127.0.0.1:6881:6881/udp"
|
||||
];
|
||||
volumes = [
|
||||
"qbittorrent-config:/config:Z"
|
||||
@ -137,7 +137,7 @@ with lib.my;
|
||||
radarr = {
|
||||
image = "lscr.io/linuxserver/radarr:latest";
|
||||
autoStart = true;
|
||||
ports = [ "7878:7078/tcp" ];
|
||||
ports = [ "127.0.0.1:7878:7078/tcp" ];
|
||||
volumes = [
|
||||
"radarr-config:/config:Z"
|
||||
"downloads:/downloads"
|
||||
@ -151,7 +151,7 @@ with lib.my;
|
||||
sonarr = {
|
||||
image = "lscr.io/linuxserver/sonarr:latest";
|
||||
autoStart = true;
|
||||
ports = [ "8989:8989/tcp" ];
|
||||
ports = [ "127.0.0.1:8989:8989/tcp" ];
|
||||
volumes = [
|
||||
"sonarr-config:/config:Z"
|
||||
"downloads:/downloads"
|
||||
|
Reference in New Issue
Block a user