Detailed explanation of three ways to connect Docker containers to each other

Detailed explanation of three ways to connect Docker containers to each other

There are three ways to interconnect and communicate between Docker containers:

  • Docker internal network: not flexible and powerful enough, not recommended
  • Docker networking: 1.9 or later, recommended
  • Docker link: Applicable to versions before 1.9.

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:

  • To hardcode the IP address of another container in the container's application;
  • After the container is restarted, the IP address may change;
  • Not convenient and flexible enough.

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,
Any host in the network can be resolved and accessed using the format of hostname or hostname.netname.

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;

  • docker network create creates a network
  • docker network inspect View network details
  • docker network ls lists all networks in the current system
  • docker network connect connects an existing container to a network
  • docker network disconnect disconnects a container from the network
  • docker network rm removes one or more networks
  • Docker network prune removes all unused networks

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:

  • A web server container
  • A Redis database container
  • A secure link between two containers

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:
  • Docker SSH sample code to connect to docker container
  • Introduction to Docker connection spring boot and mysql container method
  • Detailed explanation of docker: Allow host ssh to connect to docker container
  • How does Docker use links to establish connections between containers?
  • Docker multi-container connection (taking Tomcat+MySQL as an example)
  • Detailed explanation of building a Mysql container + Tomcat container connection environment through Docker
  • Detailed explanation of creating a MySQL container with Docker and connecting to the container through the command line
  • Docker uses Link to establish connections between containers
  • Docker container connection implementation steps analysis

<<:  Summary of various implementation methods of mysql database backup

>>:  Implementation code of using select to select elements in Vue+Openlayer

Recommend

Docker commands are implemented so that ordinary users can execute them

After installing docker, there will usually be a ...

Mac VMware Fusion CentOS7 configuration static IP tutorial diagram

Table of contents Install CentOS7 Configuring Sta...

WeChat applet realizes taking photos and selecting pictures from albums

This article shares the specific code for WeChat ...

Detailed tutorial on installing mysql-8.0.20 under Linux

** Install mysql-8.0.20 under Linux ** Environmen...

A Brief Analysis of MySQL PHP Syntax

Let's first look at the basic syntax of the c...

How to make a List in CocosCreator

CocosCreator version: 2.3.4 Cocos does not have a...

Detailed process of decompressing and installing mysql5.7.17 zip

1. Download address https://dev.mysql.com/downloa...

Several ways to implement image adaptive container with CSS (summary)

There is often a scenario where the image needs t...

Sample code for implementing dark mode with CSS variables

Recently, WeChat was forced by Apple to develop a...

Introduction to the use and advantages and disadvantages of MySQL triggers

Table of contents Preface 1. Trigger Overview 2. ...

Solution to mysql error when modifying sql_mode

Table of contents A murder caused by ERR 1067 The...

Summary of Problems in Installation and Usage of MySQL 5.7.19 Winx64 ZIP Archive

Today I learned to install MySQL, and some proble...