Assigning IP address to docker containers?

夙愿已清 提交于 2019-12-20 13:58:25

问题


I'm new to Docker. Is it possible to assign an IP address (from a DHCP server) to Docker containers running on a host or VM? If yes, can someone point me in the correct direction. If no, is it a fundamental limitation of the container approach or it's just a feature that's not in Docker yet.


回答1:


Caveat - Docker is under heavy development so confirming against current docs is advisable.

The network element is one of those under current discussion on docker-dev, it looks like longer term integration with libvirt is being considered. So to answer your question NET DHCP or something is probably not implemented as you'd want.

Some of how Docker's networking is implemented is described in this blog post. Currently a set of IP ranges in CreateBridgeIface in network.go.

For the meanwhile you might want to checkout pipework which is a tool designed to be used with Docker for various network configuration. This will allow you to add and modify IP addresses on your container, create private networks and connect containers to a physical interface. In the end it's wrapping lower level tools but you might find using pipework easier.




回答2:


Docker evolved a lot during last so as for Docker 0.6.5:

Containers have their own ip addresses now. You can check the ip address of a container using docker inspect command or if you are interested into extracting it you can use:

docker inspect container_name | grep IPAddress | cut -d '"' -f 4.


来源:https://stackoverflow.com/questions/18746484/assigning-ip-address-to-docker-containers

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!