Solve the problem after adding --subnet to Docker network Create

Solve the problem after adding --subnet to Docker network Create

After adding –subnet to Docker network Create, use docker network ls to check. No driver is found on the newly created network. Use docker network inspect to view detailed information. You can see that there is no data in many places, especially driver. Without adding –subnet, everything is normal again.

The exception diagram is as follows:

solve

Solution: At this time, you can just change the network segment of the subnet. The reason is that the network segment specified by –subnet conflicts with the network segment of a certain network.

Additional knowledge: Networks in the docker-compose file use the already created network

Prerequisites:

Docker version: 18.06.1-ce, build e68fc7a

docker-compose version: 1.22.0, build f46880fe

Using an existing network

Create a network using docker. The following examples are given:

docker network create --driver=bridge --subnet=192.168.88.0/24 demo

Run the command to check whether the network is created successfully:

docker network ls

Using the created demo network, the docker-compose.xml is as follows:

version: "3.7"
services:
 cloudgo:
 image: cloudgo:latest
 container_name: cloudgo
 ports:
  - "8080:8080"
 logging:
  driver: "json-file"
  options:
  max-size: "1000k"
  max-file: "20" 
 networks:
  demo:
   ipv4_address: 192.168.88.80
networks:
 demo:
 external: true

The main core configuration is:

networks:
 demo:
 external: true

This part indicates the use of external network demo, and external is true. The core configuration for recreating the network is:

networks:
  demo:
   driver: default
   config:
     subnet: 172.16.238.0/24
     gateway: 172.16.238.1

demo indicates the created network suffix, the driver is set to the default value, the subnet is: 172.16.238.0/24, and the gateway is.

The above is just a brief description of the validity of the above configuration under the current docker and docker-compose versions. Other versions have not been tried, and the above method may not be applicable to other versions. I hope this can provide you with a reference, and I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • A brief discussion on the problem of Docker run container being in created state
  • docker compose idea CreateProcess error=2 The system cannot find the specified file
  • Usage instructions for the docker create command

<<:  Pay attention to the use of HTML tags in web page creation

>>:  MySQL implementation of lastInfdexOf function example

Recommend

A complete guide to clearing floats in CSS (summary)

1. Parent div defines pseudo-classes: after and z...

Issues and precautions about setting maxPostSize for Tomcat

1. Why set maxPostSize? The tomcat container has ...

Analysis of pitfalls in rounding operation of ROUND function in MySQL

This article uses examples to illustrate the pitf...

15 Vim quick reference tables to help you increase your efficiency by N times

I started using Linux for development and enterta...

Detailed explanation of incompatible changes of components in vue3

Table of contents Functional Components How to wr...

How to use JSX to implement Carousel components (front-end componentization)

Before we use JSX to build a component system, le...

Steps to enable MySQL database monitoring binlog

Preface We often need to do something based on so...

Detailed tutorial on compiling and installing MySQL 5.7.24 on CentOS7

Table of contents Install Dependencies Install bo...

mysql: [ERROR] unknown option '--skip-grant-tables'

MySQL database reports ERROR 1045 (28000): Access...

How to delete node_modules and reinstall

Table of contents Step 1: Install node_modules in...

Mysql string interception and obtaining data in the specified string

Preface: I encountered a requirement to extract s...

Research on the problem of flip navigation with tilted mouse

In this article, we will analyze the production of...

MySQL 5.7.19 installation and configuration method graphic tutorial (win10)

Detailed tutorial on downloading and installing M...