Docker port mapping
Docker Desktop provides several networking features to make it easier to use.
When you run a container with the -p argument, for example:
$ docker run -p 80:80 -d nginx
Docker Desktop makes whatever is running on port 80 in the container (in this cas...
khangnhd.hashnode.dev1 min read