moby: "-bip" docker opt doesn't work

Trying to use “-bip”. From what I understand using -bip Docker will use this CIDR to create the container bridge network.

`docker -d -bip 10.0.3.0/24’ yields the default docker network (172.17.x.x)

I’ve tried several ways of notating it -bip=10.0.3.0/24 -bip="10.0.3.0/24 -bip “10.0.3.0/24” -bip 10.0.3.0/24 etc…

About this issue

  • Original URL
  • State: closed
  • Created 10 years ago
  • Comments: 15 (8 by maintainers)

Most upvoted comments

I’ll leave this here for myself and others googling this issue.

// kill docker
$ ip link del docker0
// start docker with --bip flag

🚀