From 834c7250e055c5fd567aa5d3afc96a9c4ae4146d Mon Sep 17 00:00:00 2001 From: Anil G Kurian Date: Mon, 23 Oct 2017 22:50:04 +0530 Subject: [PATCH] Update docker-overview.md (#5080) Since 'container run' is 'container create' + 'container start' the documentation is confusing when we say "You can create, run, stop, move, or delete a container using the Docker API or CLI." --- engine/docker-overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/docker-overview.md b/engine/docker-overview.md index 776e1dd6c6..952e22cd0f 100644 --- a/engine/docker-overview.md +++ b/engine/docker-overview.md @@ -164,7 +164,7 @@ and fast, when compared to other virtualization technologies. #### Containers -A container is a runnable instance of an image. You can create, run, stop, +A container is a runnable instance of an image. You can create, start, stop, move, or delete a container using the Docker API or CLI. You can connect a container to one or more networks, attach storage to it, or even create a new image based on its current state. @@ -175,7 +175,7 @@ or other underlying subsystems are from other containers or from the host machine. A container is defined by its image as well as any configuration options you -provide to it when you create or run it. When a container is removed, any changes to +provide to it when you create or start it. When a container is removed, any changes to its state that are not stored in persistent storage disappear. ##### Example `docker run` command