Docker-compose creates a bridge, adds a subnet, and deletes a network card

Docker-compose creates a bridge, adds a subnet, and deletes a network card

1. Create a docker network card

[root@i ~]# brctl addbr docker0
[root@i ~]# ip addr add 192.168.42.1/24 dev docker0  
# The ip here is for internal use in docker, you can configure any one[root@i ~]# ip link set dev docker0 up
[root@i ~]# ip addr show docker0
# View docker
[root@i ~]# systemctl restart docker
[root@i ~]# systemctl restart docker
# Start the docker service

2. Add a subnet

[root@i ~]# docker network create backend
# In this way, we have created the backend subnet, and docker-compose can directly use this network
# If the subnet is not common, use the following command to skip the security issue [root@i ~]# docker network create backend --subnet 172.24.24.0/24
 
[root@i ~]# docker network ls
NETWORK ID NAME DRIVER SCOPE
6afff4d90f05 backend bridge local
57de7f32064e bridge bridge local
4b44a5340d6e host host local
ac8e8ffe243f none null local

Here you can see the backend

3. Delete the network card

[root@i ~]# brctl show
#Check the bridge status bridge name bridge id STP enabled interfaces
br-5db3fa0c465f 8000.02424cfb3937 no veth038d483
                            veth2950f5c
                            veth669dc5e
                            veth715203f
                            veth9f31643
                            vethd0f5330
docker0 8000.3a4803cd6298 no veth9d3badb
                            vethd7530fd
[root@i ~]# brctl delif <bridge name> <port name>
#Uninstall the port on the bridge [root@i ~]# ifconfig
# Check if there is a bridge network card name [root@i ~]# ifconfig <bridge name> down
#Turn off this network card[root@i ~]# brctl delbr <bridge name>
#Delete the bridge

Supplement: The ultimate solution to the conflict between the bridge automatically created by Docker-Compose and the LAN

1. Problem Description

When using docker-compose to deploy applications, the default network mode of docker is bridge and the default network segment is 172.17.0.1/16. Unfortunately, the LAN of our own physical machine also uses the network segment 172.18.0.1/16.

After executing docker-compose -f docker-compose.yml up -d to deploy the service, the automatically generated bridge will use 172.18.xx in turn, but a sad thing happened. The bridge generated by docker conflicts with the local area network.

So, the long journey towards Baidu programming began... However, through Baidu and Google again and again, I found many blogs that were copied from each other, and finally tried and failed again and again, but ultimately failed to solve my problem. So, this article with a gold content of 99.9999999999999999999999999% was released.

Docker version for this experiment

[root@node100 docker-compose]# docker info | grep 'Server Version'
 Server Version: 19.03.12

2. Solution

Stop the container created by docker-compose

docker-compose -f docker-compose.yml down

Manipulating Docker containers

# Stop the Docker container sudo systemctl stop docker
# Stop the docker0 bridge sudo ip link set dev docker0 down
# Delete the docker0 bridge sudo brctl delbr docker0
# Reset iptables
sudo iptables -t nat -F POSTROUTING

PS

# linux brctl command not found, install brctl 
yum install bridge-utils -y

Modify daemon.json

# Edit the daemon.json file vim /etc/docker/daemon.json
# Add the following content, including setting the IP segment of the Docker container "default-address-pools": [
  {
   "base" : "192.168.0.0/16",
   "size" : 24
  }
]

PS

Note: If daemon.json contains other content, please remember to use commas to separate them.

Restart the Docker container

sudo systemctl daemon-reload
sudo systemctl start docker

Reinstall and start the docker-compose command

docker-compose -f docker-compose.yml up -d

3. Expansion Plan

Click here to get some solutions given by ISSUES masters

Solution 1

Solution 2

Option 3

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • Docker Compose network settings explained
  • A brief discussion on docker-compose network settings
  • Docker adds a bridge and sets the IP address range
  • Docker custom bridge docker0 and docker's opening, closing, and restarting command operations
  • A troubleshooting experience of centos Docker bridge mode unable to access the host Redis service

<<:  Turn off the AutoComplete function in the input box

>>:  Comparison of CSS shadow effects: drop-Shadow and box-Shadow

Recommend

Solution for Vue routing this.route.push jump page not refreshing

Vue routing this.route.push jump page does not re...

Detailed steps for installing and configuring MySQL 8.0 on CentOS

Preface Here are the steps to install and configu...

MySQL 5.7.17 installation graphic tutorial (windows)

I recently started learning database, and I feel ...

How to use js to determine whether a file is utf-8 encoded

Conventional solution Use FileReader to read the ...

Analysis of MySQL example DTID master-slave principle

Table of contents 1. Basic Concepts of GTID 2. GT...

Native js to achieve seamless carousel effect

Native js realizes the carousel effect (seamless ...

Detailed explanation of how to configure openGauss database in docker

For Windows User Using openGauss in Docker Pull t...

4 principles for clean and beautiful web design

This article will discuss these 4 principles as t...

Detailed explanation of incompatible changes in rendering functions in Vue3

Table of contents Rendering API changes Render fu...

Web designers should optimize web pages from three aspects

<br />With the increase of bandwidth, there ...

Detailed Analysis of Explain Execution Plan in MySQL

Preface How to write efficient SQL statements is ...

Web designers also need to learn web coding

Often, after a web design is completed, the desig...

In-depth analysis of HTML table tags and related line break issues

What is a table? Table is an Html table, a carrie...