Docker connects to a container through a port

Docker connects to a container through a port

Docker container connection

1. Network port mapping

We create a container for a python application

# docker run -d -P training/webapp python app.py

We create a container using the -P parameter and use docker ps to see that port 5000 is bound to host port 32768

We can also use the -p flag to specify that the container port should be bound to the host port.

The difference between the two methods is:

-P: The internal port of the container is randomly mapped to the high port of the host.

-p: Bind the container's internal port to the specified host port.

…… ...

# docker run -d -p 5000:5000 training/webapp python app.py

In addition, we can specify the network address bound to the container, such as binding 127.0.0.1

# docker run -d -p 127.0.0.1:5001:5000 training/webapp python app.py

In this way, we can access port 5000 of the container by accessing 127.0.0.1:5001

By default, containers are bound to TCP ports. If you want to bind to UDP ports, you can add /udp after the port.

# docker run -d -p 127.0.0.1:5000:5000/udp training/webapp python app.py

The docker port <images id> [port] command allows us to quickly view the port binding status

docker port ce206e3c0ae6 5000

Now we shut down all other containers and start a new nginx container

# docker run -d -p 5000:80 --name web111 nginx

We forward the container's port 80 to the local port 5000 and then access it externally

You can see that we can access it successfully, indicating that the port is forwarded.

2. Docker container connection

Port mapping is not the only way to connect Docker to another container.

Docker has a connection system that allows multiple containers to be connected together and share connection information.

A docker connection creates a parent-child relationship where the parent container can see the child container's information.

3. Container naming

When we create a container, Docker will automatically name it. But we can also use the --name flag to name the container

docker run -d -P --name Peithon training/webapp python app.py

Additional knowledge: How to view which ports are open inside a Docker container

You don't need to enter the container bash, just enter the docker port container id in the Linux command line to view it

The above article about how to connect a container through a port in Docker is all I have to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution for multiple Docker containers not having the same port number
  • 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 dynamically exposes ports to containers
  • Solution to the Docker container being unable to access the host port
  • Docker implements container port binding local port

<<:  JS realizes special effects of web page navigation bar

>>:  MySQL data archiving tool mysql_archiver detailed explanation

Recommend

Sample code for implementing neon button animation effects with CSS3.0

Today I will share with you a neon button animati...

MySQL 5.7.11 zip installation and configuration method graphic tutorial

1. Download the MySQL 5.7.11 zip installation pac...

Nginx proxy forwarding implementation code uploaded by Alibaba Cloud OSS

Preface Because the mini program upload requires ...

Introduction to the common API usage of Vue3

Table of contents Changes in the life cycle react...

HTML optimization techniques you must know

To improve the performance of web pages, many dev...

MySQL learning database backup detailed explanation

Table of contents 1.DB,DBMS,SQL 2. Characteristic...

Detailed explanation of the use of MySQL concatenation function CONCAT

The previous articles introduced the replacement ...

MySQL query sorting and paging related

Overview It is usually not what we want to presen...

Introduction to local components in Vue

In Vue, we can define (register) local components...

How to set Nginx log printing post request parameters

【Foreword】 The SMS function of our project is to ...

A detailed analysis and processing of MySQL alarms

Recently, a service has an alarm, which has made ...

JS thoroughly understands GMT and UTC time zones

Table of contents Preface 1. GMT What is GMT Hist...