volume container 是专门为其他容器提供volume的容器,它提供的卷可以是bind mount,也可以是docker managed volume。
构建
docker create —name vc_data -v ~/data:/home/data -v /other/data busybox
使用
docker run —name web -d -p 80 —volumes-form vc_data image_name
与 bind mount 相比,不必为每个容器指定 host path,所有 path 都在 volume container 中定义好了,容器只需要与 volume container 关联,实现了容器和 host 的解耦。
使用 volume container 的容器,其 mount point 是一致的,有利于配置的规范化,但也会带来一定的局限性。