码迷,mamicode.com
首页 > 其他好文 > 详细

Docker的数据通信、网络通信

时间:2018-08-14 15:46:11      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:方便   分享   挂载   from   containe   51cto   adc   特殊   start   

Docker的数据通信
  • 在Docker中,为了方便查看容器内产生的数据或者将多个容器中的数据实现共享,就涉及到容器的数据管理操作。
  • 管理Docker容器中数据只要有两种方式:数据卷(Data Volumes)和数据卷容器(Data Volumes Containers)
    ?

  • 数据卷

    数据卷是一个供容器使用的特殊目录,位于容器中,可将宿主机的目录挂载到数据卷上,对数据卷的修改操作立刻可见,并且更新数据不会影响镜像,从而实现数据在宿主机与容器之间的迁移。

    [root@centos7-5 ~]# docker pull centos //下载镜像centos
    //宿主机目录/var/www 挂载容器中的/data1
    [root@centos7-5 ~]# docker run -v /var/www:/data1 --name web1 -it centos /bin/bash
    [root@0c92ef286d08 /]# cd /data1/
    [root@0c92ef286d08 data1]# touch test1
    [root@0c92ef286d08 data1]# exit
    [root@centos7-5 ~]# ls /var/www/

技术分享图片

?
?

  • 数据卷容器

    如果需要在容器之间共享一些数据,最简单的方法就是使用数据卷容器。数据卷容器就是一个普通的容器,专门提供数据卷给其他容器挂载使用。使用方法如下:首先,需要创建一个容器做为数据卷容器。之后在其他容器创建时用 --volumes-from 挂载数据卷容器中的数据使用。

    [root@centos7-5 ~]# docker run --name web100 -v /data1 -v /data2 -it centos /bin/bash
    [root@72d6d74cd4c5 /]# exit
    [root@centos7-5 ~]# docker run -it --volumes-from web100 --name db1 centos /bin/bash
    [root@9f4265de95f2 /]# mkdir /data1/test2
    [root@centos7-5 ~]# docker start web100
    [root@centos7-5 ~]# docker exec -it web100 /bin/bash
    [root@72d6d74cd4c5 /]# ls /data1/

技术分享图片

技术分享图片

?
?

Docker网络通信

  • 端口映射

    Docker提供端口映射机制来将容器内的服务提供给外部网络访问,实质上就是将宿主机的端口映射到容器中,使得外部网络访问宿主机的端口便可以访问容器内的服务。

    # docker pull httpd     //下载镜像
    # docker run -d -P httpd   //运行镜像 -P(大写)随机映射端口
    # docker ps -a   //可以看到容器映射的端口为32769
  • 或者使用 -p (小写)指定映射端口

    # docker run -d -p 49000:80 httpd     // 指定映射端口49000

技术分享图片
技术分享图片技术分享图片

?
?

  • 容器互联

    在源容器和接收容器之间建立一条通信隧道,接收容器可以看到源容器指定的信息

    创建源容器
    [root@centos7-5 ~]# docker run -P --name web1 -itd httpd /bin/bash
    创建接收容器
    [root@centos7-5 ~]# docker run -P --name web2 --link web1:web1 -itd httpd /bin/bash
    [root@centos7-5 ~]# docker ps -a
    进入接收容器ping源容器
    [root@centos7-5 ~]# docker exec -it 19d5a89d4257 /bin/bash
    root@19d5a89d4257:/# ping web1

技术分享图片

Docker的数据通信、网络通信

标签:方便   分享   挂载   from   containe   51cto   adc   特殊   start   

原文地址:http://blog.51cto.com/13630803/2159738

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!