I have an app service in azure running a docker container.
The logs show it is running using the below docker run command. I have hidden some private company values.
docker run -d -p 4040:443 --name hidden -e WEBSITE_SITE_NAME=hidden -e WEBSITE_AUTH_ENABLED=False -e PORT=443 -e WEBSITE_ROLE_INSTANCE_ID=0 -e WEBSITE_HOSTNAME=hidden.azurewebsites.net -e WEBSITE_INSTANCE_ID=7d541a8f0aa7702237eea8e36b3c0321166514fdfef681b7755b6e82339b42dd -e HTTP_LOGGING_ENABLED=1 .azurecr.io/tests/hidden:20210310.4
Where is the -p 4040:443 being defined? I want it to be accessed on 443 so should be -p 443:443?