There are three ways to interconnect and communicate between Docker containers:
1. Docker internal network Involving Docker's own network stack. After installing Docker, the system will create a new network interface named docker0, which is used to connect the container and the host. The IP range is 172.16-172.30. Each Docker container will be assigned an IP address on this interface. Every time Docker creates a container, it creates a set of interconnected network interfaces. One end is the eth0 interface in the container, and the other end is named starting with veth on the host. By binding each veth interface to the docker0 bridge, Docker creates a virtual subnet that is shared by the host and all Docker containers. Realize the communication connection between the container and the host. Note that the veth interface only exists when the container is running. Disadvantages of using internal network to realize interconnection:
2. Docker networking Connections between containers are created using networks. Allow users to create their own networks through which containers communicate with each other; It can communicate across different hosts, and the network configuration is more flexible; You can stop, start, or restart containers without having to update connections. You don’t need to create a container in advance and then connect to it, nor do you need to worry about the order in which the containers run. You can obtain container name resolution and discovery within the network. Integrated with docker compose and swarm; A container started inside a docker network will be aware of all containers running in this network. And save the addresses of these containers to the local DNS through the /etc/hosts file, If any container is restarted, its IP address will be automatically updated in the /etc/hosts file. During the test, it was found that there seemed to be no new addresses of other containers in the /etc/hosts file, but they could ping each other. A container can join multiple networks at the same time, so very complex network models can be created;
3. Docker Link The name of the container must be referenced during the linking process, and it can only work on the same host machine. When starting the container with docker run, use the --link parameter to create a client-server link between the two containers. Two parameters are required, one is the name of the link container, and the other is the alias of the link, that is, --link redis:db. The linked container is the service, and the link allows the service container to communicate with the client container. The client container can directly access any public port of the service container, so the service container's port does not need to be exposed to the local host, which is relatively safer; You can link multiple client containers to the same service container, or you can link to multiple service containers by specifying --link multiple times. Docker writes the link information in the container's /etc/hosts file and in the environment variables containing the link information; Regardless of the approach you take, you can create a web application stack that includes the following components:
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:
|
<<: Summary of various implementation methods of mysql database backup
>>: Implementation code of using select to select elements in Vue+Openlayer
After installing docker, there will usually be a ...
Table of contents Install CentOS7 Configuring Sta...
Prepare the ingredients as shown above (ps: hadoo...
This article shares the specific code for WeChat ...
** Install mysql-8.0.20 under Linux ** Environmen...
Let's first look at the basic syntax of the c...
CocosCreator version: 2.3.4 Cocos does not have a...
1. Download address https://dev.mysql.com/downloa...
This is what happened. Today I was playing with G...
There is often a scenario where the image needs t...
example: <html> <head> <style type...
Recently, WeChat was forced by Apple to develop a...
Table of contents Preface 1. Trigger Overview 2. ...
Table of contents A murder caused by ERR 1067 The...
Today I learned to install MySQL, and some proble...