docker-compose 网桥和局域网冲突记录

部署的harbor应用,发生了网桥冲突

git 修改Docker 默认网桥的方法
修改前记得先stop docker 和docker-compose服务+
修改Docker默认网桥的方法

$ vim /etc/docker/daemon.json
{
     
  "debug" : true,
  "default-address-pools" : [
    {
     
      "base" : "172.31.0.0/16",
      "size" : 24
    }
  ]
}

修改完成,后重新启动docker 和docker-compose

# 修改完成

[root@virtual-4 harbor]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         172.16.8.1      0.0.0.0         UG    0      0        0 eth0
169.254.0.0     0.0.0.0         255.255.0.0     U     1002   0        0 eth0
169.254.169.254 172.16.8.1      255.255.255.255 UGH   0      0        0 eth0
172.16.8.0      0.0.0.0         255.255.255.0   U     0      0        0 eth0
172.31.0.0      0.0.0.0         255.255.255.0   U     0      0        0 docker0
172.31.1.0      0.0.0.0         255.255.255.0   U     0      0        0 br-eb7d9dbec2aa
172.31.2.0      0.0.0.0         255.255.255.0   U     0      0        0 br-4a6ecea82521

你可能感兴趣的:(docker,docker-compose)