Docker入門與實戰系列:熱點問題

Docker入門與實戰——《Docker ABC》電子書 https://github.com/gudaoxuri/Docker_ABCgit


11. 熱點問題

11.1. 容器如何使用靜態IP

默認狀況下Docker容器的IP是動態分配的,要使用靜態IP時咱們會思考一下:github

爲何須要靜態IP?若是是爲了兩個容器間通訊能夠docker

  1. 使用--linktcp

  2. 指定-h來指定hostname並指定-dns到宿主機spa

  3. 讓容器開放上層服務.net

若是這樣都知足不了您的要求那麼能夠參考 http://huataihuang.github.io/2014/10/05/docker-container-static-ip/ 此文實現code

11.2. 如何爲運行中的容器增長訪問端口

iptables -t nat -A  DOCKER -p tcp --dport <外部映射端口> -j DNAT --to-destination <宿主機IP>:<容器新加的端口>

http://stackoverflow.com/questions/19897743/exposing-a-port-on-a-live-docker-containerorm

11.3. 讓Docker容器使用靜態獨立的外部IP(便於集羣組建)

參考個人Blog http://my.oschina.net/gudaoxuri/blog/513923blog

相關文章
相關標籤/搜索