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

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