docker_practice/data_management/README.md
2017-11-23 00:19:30 +08:00

12 lines
453 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Docker 数据管理
![](https://docs.docker.com/engine/admin/volumes/images/types-of-mounts-volume.png)
这一章介绍如何在 Docker 内部以及容器之间管理数据,在容器中管理数据主要有两种方式:
* 数据卷Volumes
* 挂载主机目录 (Bind mounts)
Docker 在 1.13 版本引进了新的管理命令management commands在 Docker 1.13+ 推荐使用 `docker volume` 子命令来管理 Docker 数据卷。