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

docker 使用Data Volume 共享文件

时间:2014-11-14 13:54:41      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:io   使用   sp   文件   on   bs   ad   as   tt   

Adding a data volume

You can add a data volume to a container using the -v flag with the docker run command. You can use the -v multiple times in a single docker run to mount multiple data volumes. Let‘s mount a single volume now in our web application container.

$ sudo docker run  -P --name web -v  ~/Workspace:/workspace ubuntu

You can then use the --volumes-from flag to mount the /dbdata volume in another container.

$ sudo docker run -it --volumes-from workspace -v ~/Workspace ubuntu /bin/bash
 

docker 使用Data Volume 共享文件

标签:io   使用   sp   文件   on   bs   ad   as   tt   

原文地址:http://www.cnblogs.com/superping/p/4096915.html

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