From b43ada25b1d12c057bc045224f006b211c95f101 Mon Sep 17 00:00:00 2001 From: dahllias Date: Wed, 28 Jan 2026 11:10:44 -0500 Subject: [PATCH] fix(dgw): TCP_PORT environnement vairable was not used during configuration --- package/Linux/entrypoint.ps1 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/Linux/entrypoint.ps1 b/package/Linux/entrypoint.ps1 index 3ed4f0dac..6418bb11e 100644 --- a/package/Linux/entrypoint.ps1 +++ b/package/Linux/entrypoint.ps1 @@ -65,6 +65,10 @@ if ($Env:TCP_ENABLED) { } } +if (Test-Path Env:TCP_PORT) { + $TcpPort = $Env:TCP_PORT +} + $ExternalTcpPort = $TcpPort if (Test-Path Env:EXTERNAL_TCP_PORT) {