每次当我使用docker启动容器时,它会获得不同的IP

时间:2014-01-22 01:57:21

标签: ip docker lxc

如何修复容器的静态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 个答案:

答案 0 :(得分:4)

FROM DOCKER 1.10 ON

# 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的唯一方法是通过两个脚本:pipeworkovs-docker

使用Open vSwitch作为多个托管docker容器的“电池包含”版本有一个强烈的方向。

密切注意socketplane


此行为是设计使然。

在将来的版本中有一个very interesting discussion用于更改它。

到目前为止,唯一可行的方法是回退到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会禁用自动泊坞网,所有-lxc-conf选项都会根据您的需要实际定义虚拟网络。