docker_practice/container
dayiguizhen a435453b80 Update daemon.md
docker run -d 的含义是在后台运行容器并且输出容器的ID(Run container in background and print container ID),而不是以守护态运行容器。
2015-08-02 15:43:04 +08:00
..
README.md Fix issue#20, format following the guidelines 2014-10-14 13:25:01 +08:00
daemon.md Update daemon.md 2015-08-02 15:43:04 +08:00
enter.md just a simple type error 2015-02-12 22:48:10 +08:00
import_export.md Fix typo in container/import_export.md: 2015-04-27 15:46:37 +08:00
rm.md add sections to cleanup unused containers and images 2015-07-03 16:52:47 +08:00
run.md Fix issue#20, format following the guidelines 2014-10-14 13:25:01 +08:00
stop.md Fix issue#20, format following the guidelines 2014-10-14 13:25:01 +08:00

README.md

Docker 容器

容器是 Docker 又一核心概念。

简单的说,容器是独立运行的一个或一组应用,以及它们的运行态环境。对应的,虚拟机可以理解为模拟运行的一整套操作系统(提供了运行态环境和其他系统环境)和跑在上面的应用。

本章将具体介绍如何来管理一个容器,包括创建、启动和停止等。