Bind containers to 0.0.0.0

This commit is contained in:
2023-06-10 18:22:08 +01:00
parent 3c4029cb48
commit 95e4063403

View File

@ -96,7 +96,7 @@ with lib.my;
jellyfin = { jellyfin = {
image = "docker.io/jellyfin/jellyfin:10.8.10"; image = "docker.io/jellyfin/jellyfin:10.8.10";
autoStart = true; autoStart = true;
ports = [ "127.0.0.1:8096:8096/tcp" ]; ports = [ "8096:8096/tcp" ];
volumes = [ volumes = [
"jellyfin-cache:/cache:Z" "jellyfin-cache:/cache:Z"
"jellyfin-config:/config:Z" "jellyfin-config:/config:Z"
@ -113,7 +113,7 @@ with lib.my;
ombi = { ombi = {
image = "lscr.io/linuxserver/ombi:latest"; image = "lscr.io/linuxserver/ombi:latest";
autoStart = true; autoStart = true;
ports = [ "127.0.0.1:3579:3579/tcp" ]; ports = [ "3579:3579/tcp" ];
environment = { environment = {
BASE_URL = "/requests"; BASE_URL = "/requests";
}; };
@ -129,9 +129,9 @@ with lib.my;
image = "lscr.io/linuxserver/qbittorrent:latest"; image = "lscr.io/linuxserver/qbittorrent:latest";
autoStart = true; autoStart = true;
ports = [ ports = [
"127.0.0.1:8080:8080/tcp" "8080:8080/tcp"
"127.0.0.1:6881:6881/tcp" "6881:6881/tcp"
"127.0.0.1:6881:6881/udp" "6881:6881/udp"
]; ];
volumes = [ volumes = [
"qbittorrent-config:/config:Z" "qbittorrent-config:/config:Z"
@ -144,7 +144,7 @@ with lib.my;
radarr = { radarr = {
image = "lscr.io/linuxserver/radarr:latest"; image = "lscr.io/linuxserver/radarr:latest";
autoStart = true; autoStart = true;
ports = [ "127.0.0.1:7878:7878/tcp" ]; ports = [ "7878:7878/tcp" ];
volumes = [ volumes = [
"radarr-config:/config:Z" "radarr-config:/config:Z"
"downloads:/downloads" "downloads:/downloads"
@ -160,7 +160,7 @@ with lib.my;
sonarr = { sonarr = {
image = "lscr.io/linuxserver/sonarr:latest"; image = "lscr.io/linuxserver/sonarr:latest";
autoStart = true; autoStart = true;
ports = [ "127.0.0.1:8989:8989/tcp" ]; ports = [ "8989:8989/tcp" ];
volumes = [ volumes = [
"sonarr-config:/config:Z" "sonarr-config:/config:Z"
"downloads:/downloads" "downloads:/downloads"