12143/how-can-i-expose-more-than-1-port-with-docker
So I have 3 ports that should be exposed to the machine's interface. Is it possible to do this with a Docker container?
To expose just one port, this is what you need to do:
docker run -p <host_port>:<container_port>
To expose multiple ports, simply provide multiple -p arguments:
docker run -p <host_port1>:<container_port1> -p <host_port2>:<container_port2>
Hi@aminegac, For running an application you need an ...READ MORE
you can run any command in a ...READ MORE
Failed command is a build that has ...READ MORE
Here is what you can try. Link for existing ...READ MORE
Hey @nmentityvibes, you seem to be using ...READ MORE
It can work if you try to put ...READ MORE
When you use docker-compose down, all the ...READ MORE
To solve this problem, I followed advice ...READ MORE
To expose just one port, this is ...READ MORE
As far as I know, the CLI ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.