Managing Data in Containers
Managing Data in Containers
So far we've been introduced to some basic Docker concepts, seen how to work with Docker
images as well as learned about networking and links between containers. In this section we're going to discuss
how you can manage data inside and between your Docker containers.
这一章介绍怎样在docker容器之间管理数据
We're going to look at the two primary ways you can manage data in Docker.
在容器中管理数据的2个主要方法
- Data volumes, and
- Data volume containers.
Data volumes
A data volume is a specially-designated directory within one or more containers that bypasses the Union
File System to provide several useful features for persistent or shared data:
数据卷是一个专门UFS的专门文件夹,它能够提供非常多实用的特性或者共享数据
- Data volumes can be shared and reused between containers 数据卷能够在容器之间共享和重用
- Changes to a data volume are made directly 对数据卷的改变是立刻生效
- Changes to a data volume will not be included when you update an image 当你更新数据的时候。不会被包括到image中
- Volumes persist until no containers use them 卷会一直存在直到没有容器使用他们
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.
在用docker run命令的时候,使用-v标记来加入一个数据卷。在一次run中多次使用能够挂载多个数据卷,以下载入一个卷到web容器上。
$ sudo docker run -d -P --name web -v /webapp training/webapp python app.py
This will create a new volume inside a container at /webapp.
这创建一个新的卷到容器的/webapp
Note: You can also use the
VOLUMEinstruction
in aDockerfileto add one or more
new volumes to any container created from that image.注意:也能够在dockerfile中使用volume来加入一个或者多个新的卷到随意容器
Mount a Host Directory as a Data Volume
In addition to creating a volume using the -v flag
you can also mount a directory from your own host into a container.
使用-v标记也能够挂载一个主机的文件夹到容器中去
$ sudo docker run -d -P --name web -v /src/webapp:/opt/webapp training/webapp python app.py
This will mount the local directory, /src/webapp,
into the container as the /opt/webapp directory.
This is very useful for testing, for example we can mount our source code inside the container and see our application at work as we change the source code. The directory on the host must be specified as an absolute path and if the directory doesn't exist
Docker will automatically create it for you.
上面的命令载入主机的/src/webapp到容器的/opt/webapp文件夹。
这个測试的时候非常实用,比方我们能够载入我们的源代码到容器中。来查看他们是否工作良好。文件夹的路径必须是主机上的绝对路径。假设文件夹不存在docker会自己主动为你创建它。
Note: This is not available from a
Dockerfiledue
to the portability and sharing purpose of it. As the host directory is, by its nature, host-dependent, a host directory specified in aDockerfileprobably
wouldn't work on all hosts.注意:dockerfile 中不能用,各种操作系统的文件路径格式不一样。所以不一定适合全部的主机。
Docker defaults to a read-write volume but we can also mount a directory read-only.
docker mount默认是读写权限,但我们能够把它载入为仅仅读。
$ sudo docker run -d -P --name web -v /src/webapp:/opt/webapp:ro training/webapp python app.py
Here we've mounted the same /src/webapp directory
but we've added the ro option to
specify that the mount should be read-only.
加了ro之后,就挂载为仅仅读了。
Mount a Host File as a Data Volume
The -v flag can also be used to mount
a single file - instead of just directories - from the host machine.
-v标记也能够从主机挂载单个文件到容器中
$ sudo docker run --rm -it -v ~/.bash_history:/.bash_history ubuntu /bin/bash
This will drop you into a bash shell in a new container, you will have your bash history from the host and when you exit the container, the host will have the history of the commands typed while in the container.
这样就能够记录在容器输入过的命令了。
Note: Many tools used to edit files including
viandsedmay result in an inode change. Since Docker v1.1.0, this will produce an error such as "sed: cannot rename ./sedKdJ9Dy: Device or resource busy". In the case where you want to edit the mounted file, it
--in-place
is often easiest to instead mount the parent directory.注意:非常多工具子在使用vi或者sed --in-place的时候会导致inode的改变。从docker 1.1.0起。它会报错,所以最简单的办法就直接mount父文件夹。
Creating and mounting a Data Volume Container
If you have some persistent data that you want to share between containers, or want to use from non-persistent containers, it's best to create a named Data Volume Container, and then to mount the data from it.
假设你有一些持续更新的数据须要在容器之间共享,最好创建一个命名容器卷。然后载入它。
Let's create a new named container with a volume to share.
如今就来创建一个命名容器卷并共享它
$ sudo docker run -d -v /dbdata --name dbdata training/postgres echo Data-only container for postgres
You can then use the --volumes-from flag
to mount the /dbdata volume in another
container.
你能够在其它容器中使用--volumes-from 来挂载/dbdata卷
$ sudo docker run -d --volumes-from dbdata --name db1 training/postgres
And another:
$ sudo docker run -d --volumes-from dbdata --name db2 training/postgres
You can use multiple --volumes-from parameters
to bring together multiple data volumes from multiple containers.
还能够使用多个--volumes-from 參数来从多个容器挂载多个数据卷
You can also extend the chain by mounting the volume that came from the dbdata container
in yet another container via the db1 or db2 containers.
也能够从其它已经挂载了容器卷的容器来挂载数据卷
$ sudo docker run -d --name db3 --volumes-from db1 training/postgres
If you remove containers that mount volumes, including the initial dbdata container,
or the subsequent containers db1 and db2,
the volumes will not be deleted until there are no containers still referencing those volumes. This allows you to upgrade, or effectively migrate data volumes between containers.
假设你移除了挂载的容器,包含初始容器,或者后来的db1 db2,这些卷在有容器使用它的时候不会被删除。这能够让我们在容器之间升级和移动数据。
Backup, restore, or migrate data volumes
Another useful function we can perform with volumes is use them for backups, restores or migrations. We do this by using the --volumes-from flag
to create a new container that mounts that volume, like so:
另外一个实用功能是使用他们来备份、恢复、移动数据卷。使用--volume标记来创建一个载入了卷的新的容器。命令例如以下:
$ sudo docker run --volumes-from dbdata -v $(pwd):/backup ubuntu tar cvf /backup/backup.tar /dbdata
Here's we've launched a new container and mounted the volume from the dbdata container.
We've then mounted a local host directory as /backup.
Finally, we've passed a command that uses tar to
backup the contents of the dbdata volume
to a backup.tar file inside our /backup directory.
When the command completes and the container stops we'll be left with a backup of our dbdata volume.
这里我们创建了一个容器。然后从dbdata容器来挂载一个数据卷。然后从本地主机挂载了一个/backup文件夹。
最后。使用tar命令来讲dbdata卷备份为back.tar到/backup文件夹。当命令运行完、容器停止之后,我们就备份了dbdata数据卷。
You could then to restore to the same container, or another that you've made elsewhere. Create a new container.
你能够使用这个备份来恢复这个容器。
$ sudo docker run -v /dbdata --name dbdata2 ubuntu /bin/bash
Then un-tar the backup file in the new container's data volume.
然后使用untar解压这个备份文件到新容器卷中。
$ sudo docker run --volumes-from dbdata2 -v $(pwd):/backup busybox tar xvf /backup/backup.tar
You can use this techniques above to automate backup, migration and restore testing using your preferred tools.
你能够用上述技术自己主动备份、移动、恢复測试。
Next steps
Now we've learned a bit more about how to use Docker we're going to see how to combine Docker with the services available on Docker Hub including
Automated Builds and private repositories.
Go to Working with Docker Hub.
Managing Data in Containers的更多相关文章
- Docker数据管理-数据卷 data volumes和数据卷容器data volumes containers的使用详解
此文来源于:https://yq.aliyun.com/ziliao/43471 参考原文件之外,做了些修改. Volume数据卷是Docker的一个重要概念.数据卷是可供一个或多个容器使用的特殊目录 ...
- Linking Containers Together
Linking Containers Together In the Using Docker section we touched on connecting to a service runnin ...
- 【新技术】Docker 学习笔记
原文地址 一.Docker 简介 Docker 两个主要部件: Docker: 开源的容器虚拟化平台 Docker Hub: 用于分享.管理 Docker 容器的 Docker SaaS 平台 -- ...
- Docker相关文档
网上找到的一个入门级Docker学习笔记,写的不错,值得一看. 转自:http://www.open-open.com/lib/view/open1423703640748.html#articleH ...
- 【云计算】docker run详解
Docker学习总结之Run命令介绍 时间 2015-01-21 17:06:00 博客园精华区 ...
- docker nexus oss
docker login/search x.x.x.x:8081 sonatype/docker-nexus Docker images for Sonatype Nexus with the Ora ...
- 非常详细的docker学习笔记
http://www.open-open.com/lib/view/open1423703640748.html 一.Docker 简介 Docker 两个主要部件: Docker: 开源的容器虚拟化 ...
- 非常详细的 Docker 学习笔记
一.Docker 简介 Docker 两个主要部件: Docker: 开源的容器虚拟化平台 Docker Hub: 用于分享.管理 Docker 容器的 Docker SaaS 平台 -- Docke ...
- Docker学习总结之Run命令介绍
Docker学习总结之Run命令介绍 本文由Vikings(http://www.cnblogs.com/vikings-blog/) 原创,转载请标明.谢谢! 在使用Docker时,执行最多的命令某 ...
随机推荐
- VC Office2007界面对话框实现
我们知道VS2008SP1之后,MFC就多了一个功能包,可以快速的建立一个ribbon的界面,视觉样式可以在office 2007蓝.黑等颜色之间切换,这对于单文档/多文档做界面非常方便,而且也蛮好看 ...
- TIA Portal V12不能添加新的CPU
4核AMD 740,10G内存,Win7 X64,打开TIA Portal V12,依旧慢如牛,鼠标指针转啊转,TIA窗口写着 无响应... 真没志气,STM32要是玩转了,坚决不用这老牛. 上图为正 ...
- EF连接MySQL数据Web.Config配置
EF连接MySQL数据Web.Config配置 <?xml version="1.0" encoding="utf-8"?> <configu ...
- Spring Uploading Files
1,在servlet-dispatcher.xml中添加代码 <bean id="multipartResolver" class="org.springframe ...
- webstorm入门1-主题和配色
1.引子 以前介绍过 Sublime text 3 系列的文章,着重介绍了 Sublime text 3 如何下载.安装.插件.配置等内容.Sublime text 3的轻量和富扩展,为前端开发带来了 ...
- IT大数据服务管理高级课程(IT服务,大数据,云计算,智能城市)
个人简历 金石先生是马克思主义中国化的研究学者,上海财经大学经济学和管理学硕士,中国民主建国会成员,中国特色社会主义人文科技管理哲学的理论奠基人之一.金石先生博学多才,对问题有独到见解.专于工作且乐于 ...
- python 网络爬虫(二) BFS不断抓URL并放到文件中
上一篇的python 网络爬虫(一) 简单demo 还不能叫爬虫,只能说基础吧,因为它没有自动化抓链接的功能. 本篇追加如下功能: [1]广度优先搜索不断抓URL,直到队列为空 [2]把所有的URL写 ...
- 使用RNSwipeViewController类库进行视图切换
如今很多应用已经不再局限于点击按钮触发事件来进行视图之间切换,为迎合给予用户更好体验,体现iOS系统极佳用户体验,使用手势来进行各个视图之间切换,用户至于一个大拇指在屏幕中央就可浏览到很多信息: 关于 ...
- git 提交ignore files
1,首先在命令行创建.gitignore文件 $ touch .gitignore 2,在文件.gitignore 加入要忽略的文件入 $ echo *.class > .gitignore 3 ...
- Swift - 环形进度条(UIActivityIndicatorView)的用法
Swift中,除了条形进度条外,还有环形进度条,效果图如下: 1,环形进度条的基本属性 (1)Style: Large White:比较大的白色环形进度条 White:白色环形进度条 Gray:灰色环 ...