Docker错误:无法使用--lxc-conf和execdriver:native-0.2

时间:2015-12-10 09:39:36

标签: docker ip containers

我的要求是我想为容器提供静态IP。

我使用LXC-conf,such as the following link来设置IP DHCP /静态。

我是lakuakan即

 docker run \
 --net="none" \ 
 --lxc-conf="lxc.network.type = veth" \ 
 --lxc-conf="lxc.network.ipv4 = 192.168.23.38" \
 --lxc-conf="lxc.network.ipv4.gateway = 192.168.23.1" \
 --lxc-conf="lxc.network.link = dkr01" \
 --lxc-conf="lxc.network.name = eth0" \
 --lxc-conf="lxc.network.flags = up" \
 --lxc-conf="lxc.network.veth.pair = sts" 
 -h sts \
 --name sts \
 -d ubuntu_erp:latest

执行最后一个语法时,出现错误“来自守护程序的错误响应:不能使用-lxc-conf和execdriver:native-0.2”

 docker run \
 --net="none" \ 
 --lxc-conf="lxc.network.type = veth" \ 
 --lxc-conf="lxc.network.ipv4 = 192.168.23.38" \
 --lxc-conf="lxc.network.ipv4.gateway = 192.168.23.1" \
 --lxc-conf="lxc.network.link = dkr01" \
 --lxc-conf="lxc.network.name = eth0" \
 --lxc-conf="lxc.network.flags = up" \
 --lxc-conf="lxc.network.veth.pair = sts" 
 -h sts \
 --name sts \
 -d ubuntu_erp:latest
 Error response from daemon: Cannot use --lxc-conf with execdriver: native-0.2

我寻求帮助,因为我需要。

也许你有一个可靠的码头工人,可以帮助满足我的需求。 想根据本地Intranet提供DHCP IP。

0 个答案:

没有答案