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
{{ message }}
This repository has been archived by the owner on Sep 29, 2020. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
We create all the containers in the same container group which is similar to a Kubernetes pod in that all the containers are scheduled on the same host
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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 yourdocker 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.
The text was updated successfully, but these errors were encountered: