docker中的link

一.查看容器的詳細情形

docker inspect 容器id/名稱

  

二.爲何要用link

容器每次重啓時,ip都會變更,這不利於前端引用中鏈接數據庫.php

三.link

docker run -p 8001:80 --name httpd --link mysqld56:host.site.com  \
-v /httpd/vhosts:/etc/httpd/vhosts -v /www/web:/var/www/html \ 
-v /httpd/vhosts:/etc/httpd/vhosts \
-itd centos6-apache2-php5.6 /init/httpd.sh

  

--link: 在httpd容器中引用mysqld56,同時給出一個別名host.site.comhtml

在配置數據庫host的地方就能夠直接寫host.site.com,這樣容器啓動,也不會有問題.前端

相關文章
相關標籤/搜索