|
|
|
|
|
by buster
4688 days ago
|
|
Absolutely love docker, hope to see it mature even more :) I am currently playing around with it and building a messaging platform playground. One "pain" so far is that docker's IPAddress assignment is not very flexible. Will it be possible to assign IP addresses to containers (e.g. from "docker run")? Or have a better control what IPAddresses are used (like giving a network range on docker -d)? If i am not mistaken docker saves changes in containers through aufs and keeps those changes as separate images on disk, right? I'm currently working with containers which keep their state on the host OS (by mount bindings) and thus, i don't want to keep old images of not-running containers. Will there be some switch to disable that or clean up old ones? Maybe i am misinterpreting something, but i'm new to docker ;) Anyway, keep up the great work, i am very impressed with docker, kudos!! |
|
http://blog.docker.io/2013/04/unionize-network-superpowers-f...
You have to run ./unionize <bridge> <container sha1> <ip address> after starting the container, but that brings up a new interface inside the container with that IP and connects it to the bridge.
This is useful for having private IPs between containers of an application, for accessing databases or similar.