From 8d18190c9412268aa0279a4e89d4e02cbd1bdb46 Mon Sep 17 00:00:00 2001 From: Fabio Fantoni Date: Thu, 14 Sep 2023 15:58:28 +0200 Subject: [PATCH] fix NETBIRD_SIGNAL_PORT not working with custom port (#1143) (#1145) Use NETBIRD_SIGNAL_PORT variable instead of the static port for signal container in the docker-compose template to make setting of custom signal port working Signed-off-by: Fabio Fantoni --- infrastructure_files/docker-compose.yml.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure_files/docker-compose.yml.tmpl b/infrastructure_files/docker-compose.yml.tmpl index 3e7eb1df6..b70e4cb6e 100644 --- a/infrastructure_files/docker-compose.yml.tmpl +++ b/infrastructure_files/docker-compose.yml.tmpl @@ -36,7 +36,7 @@ services: volumes: - $SIGNAL_VOLUMENAME:/var/lib/netbird ports: - - 10000:80 + - $NETBIRD_SIGNAL_PORT:80 # # port and command for Let's Encrypt validation # - 443:443 # command: ["--letsencrypt-domain", "$NETBIRD_LETSENCRYPT_DOMAIN", "--log-file", "console"]