Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set a specific fixed IP address when I create a docker machine or container?

When I create my container, I want to set a specific container's IP address in the same LAN.

Is that possible? If not, after the creation can I edit the DHCP IP address?

like image 904
user3437964 Avatar asked Apr 17 '15 08:04

user3437964


People also ask

How do I run a docker container on a specific IP?

When you connect an existing container to a different network using docker network connect , you can use the --ip or --ip6 flags on that command to specify the container's IP address on the additional network. In the same way, a container's hostname defaults to be the container's ID in Docker.

Can a docker container have its own IP address?

The answer is: you can configure it. Create the container with --network host and it will use the host ip. There are other modes. Refer to the documentation above.


Video Answer


1 Answers

Considering the conclusion of the (now old October 2013) article "How to configure Docker to start containers on a specific IP address range", this doesn't seem to be possible (or at least "done automatically for you by Docker") yet.


Update Nov 2015: a similar problem is discussed in docker/machine issue 1709, which include the recent workaround (Nov 2015)proposed by Tobias Munk (schmunk42) for docker machine
(for container see the next section):

A workaround for some use-cases could be to create machines like so:

  • 192.168.98.100

    docker-machine create -d virtualbox --virtualbox-hostonly-cidr "192.168.98.1/24" m98
    
  • 192.168.97.100

    docker-machine create -d virtualbox --virtualbox-hostonly-cidr "192.168.97.1/24" m97
    
  • 192.168.96.100

    docker-machine create -d virtualbox --virtualbox-hostonly-cidr "192.168.96.1/24" m96
    

If there's no other machine with the same cidr (Classless Inter-Domain Routing), the machine should always get the .100 IP upon start.

Another workaround:

(see my script in "How do I create a docker machine with a specific URL using docker-machine and VirtualBox?")

My virtualbox has dhcp range 192.168.99.100 - 255 and I want to set an IP before 100.

I've found a simple trick to set a static IP: after create a machine I run this command and restart the machine:

echo "ifconfig eth1 192.168.99.50 netmask 255.255.255.0 broadcast 192.168.99.255 up" \
| docker-machine ssh prova-discovery sudo tee /var/lib/boot2docker/bootsync.sh > /dev/null 

This command create a file bootsync.sh that is searched by boot2docker startup scripts and executed.

Now during machine boot the command is executed and set static IP.

docker-machine ls
NAME              ACTIVE   DRIVER       STATE     URL                                      SWARM
test-1                      -        virtualbox     Running   tcp://192.168.99.50:2376      test-1 (mast

Michele Tedeschi (micheletedeschi) adds

I've updated the commands with:

echo "kill `more /var/run/udhcpc.eth1.pid`\nifconfig eth1 192.168.99.50 netmask 255.255.255.0 broadcast 192.168.99.255 up" | docker-machine ssh prova-discovery sudo tee /var/lib/boot2docker/bootsync.sh > /dev/null

then run command (only the first time)

docker-machine regenerate-certs prova-discovery

now the IP will not be changed by the DHCP

(replace prova-discovery by the name of your docker-machine)


April 2015:

The article mentions the possibility to create your own bridge (but that doesn't assign one of those IP addresses to a container though):

create your own bridge, configure it with a fixed address, tell Docker to use it. Done.

If you do it manually, it will look like this (on Ubuntu):

stop docker
ip link add br0 type bridge
ip addr add 172.30.1.1/20 dev br0
ip link set br0 up
docker -d -b br0

To assign a static IP within the range of an existing bridge IP range, you can try "How can I set a static IP address in a Docker container?", using a static script which creates the bridge and a pair of peer interfaces.

Update July 2015:

The idea mention above is also detailed in "How can I set a static IP address in a Docker container?" using:

  • Building your own bridge

The result should be that the Docker server starts successfully and is now prepared to bind containers to the new bridge.
After pausing to verify the bridge’s configuration, try creating a container — you will see that its IP address is in your new IP address range, which Docker will have auto-detected.

you can use the brctl show command to see Docker add and remove interfaces from the bridge as you start and stop containers, and can run ip addr and ip route inside a container to see that it has been given an address in the bridge’s IP address range and has been told to use the Docker host’s IP address on the bridge as its default gateway to the rest of the Internet.

  • Start docker with: -b=br0 (that is also what the echo 'DOCKER_OPTS="-b=bridge0"' >> /etc/default/docker can set for you by default)

  • Use pipework (192.168.1.1 below being the default gateway ip address):

    pipework br0 container-name 192.168.1.10/[email protected]
    
like image 68
VonC Avatar answered Sep 27 '22 19:09

VonC