Rename traefik network to traefik

Webproxy is the name intended for the network where the netbird
container used for proxying resides.
This commit is contained in:
JuliusFreudenberger 2026-04-30 23:04:04 +02:00
parent f894c27799
commit 90b63bd24f
3 changed files with 10 additions and 10 deletions

View file

@ -54,7 +54,7 @@ in {
image = "netbirdio/dashboard:v${dashboardVersion}";
autoStart = true;
networks = [
"webproxy"
"traefik"
];
environment = {
NETBIRD_MGMT_API_ENDPOINT = "https://${netbirdCfg.server.management.domain}";
@ -88,7 +88,7 @@ in {
image = "netbirdio/netbird-server:${serverVersion}";
autoStart = true;
networks = [
"webproxy"
"traefik"
];
entrypoint = "/bin/sh";
cmd = [
@ -169,7 +169,7 @@ in {
"51820:51820/udp"
];
networks = [
"webproxy"
"traefik"
];
dependsOn = [
"netbird-server"