Detailed explanation of Docker container network port configuration process

Detailed explanation of Docker container network port configuration process

Exposing network ports

In fact, there are two parameters in Docker that involve exposing network ports, namely -p and -P. The following will introduce them separately.

-P

With -P, Docker will randomly assign an unused port to the application on the host and map it to the open port in the container.
For example, as follows:

As you can see, Docker assigns a random port 32768 to the application, which can be used to access the container.
nginx(http://lcalhost:32768).

-p

The -p parameter has several different uses:

hostPort:containerPort

This usage is to bind the host port and the container port, as follows:


The above command means mapping port 80 of the host machine to port 80 of the container. The first port 80 is port 80 of the host machine, and the second port 80 is port 80 of the container.

ip:hostPort:containerPort

This method maps the port of the specified IP address to the port of the container. as follows:


Map port 80 of the 192.168.0.195 address to port 80 of the container.

ip::containerPort

This method maps a random port of a specified IP address to an open port of a container, as follows

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to modify the port mapping of a running Docker container
  • How to dynamically modify container port mapping in Docker
  • Perfect solution to the problem of not being able to access the port of the docker container under Windows 10
  • Docker connects to a container through a port
  • Docker dynamically exposes ports to containers
  • Solution to the Docker container being unable to access the host port
  • Troubleshooting process for Docker container suddenly failing to connect after port mapping
  • Solution for multiple Docker containers not having the same port number

<<:  Detailed process of implementing the 2048 mini game in WeChat applet

>>:  MySQL query sorting and paging related

Recommend

MySQL spatial data storage and functions

Table of contents 1. Data Type 1. What is MySQL s...

Implement MySQL read-write separation and load balancing based on OneProxy

Introduction Part 1: Written at the beginning One...

Details on how to write react in a vue project

We can create jsx/tsx files directly The project ...

Vue3 slot usage summary

Table of contents 1. Introduction to v-slot 2. An...

How to use gdb to debug core files in Linux

1.core file When a Segmentation fault (core dumpe...

JS implements jQuery's append function

Table of contents Show Me The Code Test the effec...

Detailed explanation of importing/exporting MySQL data in Docker container

Preface We all know that the import and export of...

HTML table markup tutorial (28): cell border color attribute BORDERCOLOR

To beautify the table, you can set different bord...

Solution to the problem of installing MySQL compressed version zip

There was a problem when installing the compresse...

Detailed explanation of the use of base tag in HTML

In requireJS, there is a property called baseURL....

How to encapsulate axios in Vue

Table of contents 1. Installation 1. Introduction...

MySQL optimization query_cache_limit parameter description

query_cache_limit query_cache_limit specifies the...

Implementation of vue-nuxt login authentication

Table of contents introduce Link start Continue t...