Hi,
I've created Microsoft Dynamics Business Central on container. I've used the following powershell scripts
$additionalParameters = @("--publish 8080:8080",
"--publish 443:443",
"--publish 7046-7049:7046-7049",
"--env publicFileSharePort=8080",
"--env RemovePasswordKeyFile=N"
)
$params = @{ "enableSymbolLoading" = $true
"licensefile" = "<LICENESE FILE URL>" }
$auth = "NavUserPassword"
New-NavContainer -accept_eula @params -containerName NAV -includeCSide -credential cfadmin -additionalParameters $additionalParameters -alwaysPull -imageName "navinsider.azurecr.io/dynamics-nav:11.0.21063.0-finus" -useSSL
The container gets created and I can access it locally. I'm trying to publish the ports but when I view the container ports it gives
PS C:\demo> docker port <ID>
7047/tcp -> 0.0.0.0:7047
443/tcp -> 0.0.0.0:443
7046/tcp -> 0.0.0.0:7046
7048/tcp -> 0.0.0.0:7048
7049/tcp -> 0.0.0.0:7049
8080/tcp -> 0.0.0.0:8080
Kindly guide.
Thanks
*This post is locked for comments
I have the same question (0)