1

Hide many services inside docker network without exposing ports

This commit is contained in:
2023-09-12 16:00:39 +02:00
parent f56055b400
commit e5040ba53d
15 changed files with 91 additions and 57 deletions

View File

@ -9,18 +9,19 @@
autoStart = true;
dependsOn = [
"pihole"
"sabnzbd"
"prowlarr"
# "pihole"
# "sabnzbd"
# "prowlarr"
];
ports = [
"7878:7878"
# "7878:7878"
];
volumes = [
"/media/Usenet:/downloads"
"/media/Movie:/movies"
"radarr_config:/config"
];
@ -30,6 +31,8 @@
TZ = "Europe/Berlin";
};
extraOptions = [];
extraOptions = [
"--net=behind-nginx"
];
};
}