You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ACI does not support port mapping so commands like docker run -d -p 8080:80 nginx will fail. You will need to make sure that your docker run commands specify the same container and host ports. e.g.: docker run -d -p 80:80 nginx.
The same applies for services defined in a Compose file.
ACI does not support port mapping so commands like
docker run -d -p 8080:80 nginxwill fail. You will need to make sure that yourdocker runcommands specify the same container and host ports. e.g.:docker run -d -p 80:80 nginx.The same applies for services defined in a Compose file.