提问者:小点点

每次当我用docker启动一个容器时,它会得到一个不同的IP


如何修复容器的静态IP?

首先,我启动一个容器并检查它,它说

"NetworkSettings": {
    "IPAddress": "XX.XX.206.98",
    "IPPrefixLen": 27,
    "Gateway": "XX.XX.206.105",
    "Bridge": "public",
    "PortMapping": null,
    "Ports": {}
},

然后我停下来,重新开始,就像

"NetworkSettings": {
    "IPAddress": "XX.XX.206.99",
    "IPPrefixLen": 27,
    "Gateway": "XX.XX.206.105",
    "Bridge": "public",
    "PortMapping": null,
    "Ports": {}
},

正如你所看到的,它改变了。我刚刚创建了一个名为public的桥,并用添加的-b=public启动docker。如何为容器设置静态IP?


共1个答案

匿名用户

从DOCKER 1.10开始

# create a new bridge network with your subnet and gateway for your ip block
$ docker network create --subnet 203.0.113.0/24 --gateway 203.0.113.254 iptastic

# run a nginx container with a specific ip in that block
$ docker run --rm -it --net iptastic --ip 203.0.113.2 nginx

# curl the ip from any other place (assuming this is a public ip block duh)
$ curl 203.0.113.2

使现代化

现在获得静态IP的唯一方法是通过两个脚本:pipework或ovs docker

使用OpenVSwitch作为多主机docker容器的“含电池”版本是一个强有力的方向。

密切关注socketplane。

这种行为是故意的。

关于在未来版本中更改它,有一个非常有趣的讨论。

到目前为止,你能做到这一点的唯一方法是回到linux容器:

docker run \
-n=false \
-lxc-conf="lxc.network.type = veth" \
-lxc-conf="lxc.network.ipv4 = 172.16.42.20/24" \
-lxc-conf="lxc.network.ipv4.gateway = 172.16.42.1" \
-lxc-conf="lxc.network.link = docker0" \
-lxc-conf="lxc.network.name = eth0" \
-lxc-conf="lxc.network.flags = up" \
-i -t my_image:my_tag /bin/bash

所以-n=false禁用了自动docker网络,所有的-lxc-conf选项实际上是根据您的需要定义虚拟网络。