zoukankan      html  css  js  c++  java
  • 容器(六)用 volume container 共享数据【37】

    (五)用 volume container 共享数据

    ​ volume container 是专门为其他容器提供 volume 的容器。它提供的卷可以是 bind mount,也可以是 docker managed volume。下面我们创建一个 volume container:

    root@cuiyongchao:~# docker create --name vc-data -v /root/htdocs:/usr/local/apache2/htdocs -v /other/useful/tools busybox
    7c5d6b9a0c3881e523277180cbceb44d9ffa242aabf67ea1aa680535a040bf64
    

    我们将容器命名为 vc_data(vc 是 volume container 的缩写)。注意这里执行的是 docker create 命令,这是因为 volume container 的作用只是提供数据,它本身不需要处于运行状态。容器 mount 了两个 volume:

    1. bind mount,存放 web server 的静态文件。
    2. docker managed volume,存放一些实用工具(当然现在是空的,这里只是做个示例)。

    通过 docker inspect 可以查看到这两个 volume。

    root@cuiyongchao:~# docker inspect 7c5d6b9a0c3881e523277180cbceb44d9ffa242aabf67ea1aa680535a040bf64
    "Mounts": [
                {
                    "Type": "bind",
                    "Source": "/root/htdocs",
                    "Destination": "/usr/local/apache2/htdocs",
                    "Mode": "",
                    "RW": true,
                    "Propagation": "rprivate"
                },
                {
                    "Type": "volume",
                    "Name": "979af4152e2d50ecffb2945909c42314ec0d68b255495e8afc7eac79528e292f",
                    "Source": "/var/lib/docker/volumes/979af4152e2d50ecffb2945909c42314ec0d68b255495e8afc7eac79528e292f/_data",
                    "Destination": "/other/useful/tools",
                    "Driver": "local",
                    "Mode": "",
                    "RW": true,
                    "Propagation": ""
                }
            ],
    
    

    其他容器可以通过 --volumes-from 使用 vc_data 这个 volume container:

    root@cuiyongchao:~# docker run --name web11 -d -p 80 --volumes-from vc-data httpd
    6e181a02bf07fcd97a7d0a0ffe4aa6ddf58e1a3b8dc2c180ea80356e73033f36
    root@cuiyongchao:~# docker run --name web12 -d -p 80 --volumes-from vc-data httpd
    2bd5874c54ba42803a479f2b05b8ab1bf31f3c99809ebba6cae93cb917202f36
    root@cuiyongchao:~# docker run --name web13 -d -p 80 --volumes-from vc-data httpd
    3dac1c95df31dcebf63f7e3d53534e2088c6fb14958a762123833d7fa4d653b8
    root@cuiyongchao:~# docker ps
    CONTAINER ID        IMAGE               COMMAND              CREATED              STATUS              PORTS                   NAMES
    3dac1c95df31        httpd               "httpd-foreground"   5 seconds ago        Up 3 seconds        0.0.0.0:32777->80/tcp   web13
    2bd5874c54ba        httpd               "httpd-foreground"   12 seconds ago       Up 10 seconds       0.0.0.0:32776->80/tcp   web12
    6e181a02bf07        httpd               "httpd-foreground"   18 seconds ago       Up 16 seconds       0.0.0.0:32775->80/tcp   web11
    
    

    三个 httpd 容器都使用了 vc_data,看看它们现在都有哪些 volume,以 web11 为例 :

    root@cuiyongchao:~# docker inspect web11
            "Mounts": [
                {
                    "Type": "bind",
                    "Source": "/root/htdocs",
                    "Destination": "/usr/local/apache2/htdocs",
                    "Mode": "",
                    "RW": true,
                    "Propagation": "rprivate"
                },
                {
                    "Type": "volume",
                    "Name": "979af4152e2d50ecffb2945909c42314ec0d68b255495e8afc7eac79528e292f",
                    "Source": "/var/lib/docker/volumes/979af4152e2d50ecffb2945909c42314ec0d68b255495e8afc7eac79528e292f/_data",
                    "Destination": "/other/useful/tools",
                    "Driver": "local",
                    "Mode": "",
                    "RW": true,
                    "Propagation": ""
                }
            ],
    
    

    web1 容器使用的就是 vc_data 的 volume,而且连 mount point 都是一样的。验证一下数据共享的效果:

    root@cuiyongchao:~# echo "this updata secondy!" >/root/htdocs/index.html 
    root@cuiyongchao:~# 
    root@cuiyongchao:~# 
    root@cuiyongchao:~# docker ps
    CONTAINER ID        IMAGE               COMMAND              CREATED             STATUS              PORTS                   NAMES
    3dac1c95df31        httpd               "httpd-foreground"   3 minutes ago       Up 3 minutes        0.0.0.0:32777->80/tcp   web13
    2bd5874c54ba        httpd               "httpd-foreground"   3 minutes ago       Up 3 minutes        0.0.0.0:32776->80/tcp   web12
    6e181a02bf07        httpd               "httpd-foreground"   3 minutes ago       Up 3 minutes        0.0.0.0:32775->80/tcp   web11
    root@cuiyongchao:~# curl 10.0.0.20:32775
    this updata secondy!
    root@cuiyongchao:~# curl 10.0.0.20:32776
    this updata secondy!
    root@cuiyongchao:~# curl 10.0.0.20:32777
    this updata secondy!
    root@cuiyongchao:~#
    
    

    可见,三个容器已经成功共享了 volume container 中的 volume。

    下面我们讨论一下 volume container 的特点:

    1. 与 bind mount 相比,不必为每一个容器指定 host path,所有 path 都在 volume container 中定义好了,容器只需与 volume container 关联,实现了容器与 host 的解耦
    2. 使用 volume container 的容器其 mount point 是一致的,有利于配置的规范和标准化,但也带来一定的局限,使用时需要综合考虑。
  • 相关阅读:
    树状数组
    1424:【例题3】喷水装置
    Matrix (二分套二分
    素数筛
    快速幂
    CentOS6/7-防火墙管理
    Ubuntu15.04 python升级到python-3.6.x
    查看Linux系统用户登录日志
    [shell]查找网段内可用IP地址
    最小化安装Linux的常用配置整理
  • 原文地址:https://www.cnblogs.com/cuiyongchao007/p/14046116.html
Copyright © 2011-2022 走看看