From a220d59e4b7dce980c6d73a9e41e0b21f142ee56 Mon Sep 17 00:00:00 2001 From: yackob03 Date: Fri, 7 Feb 2014 18:59:22 -0500 Subject: [PATCH] Tweak the accuracy on one piece of tutorial text. --- static/tutorial/create-image.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/tutorial/create-image.html b/static/tutorial/create-image.html index 7a22efb00..4b753dfc3 100644 --- a/static/tutorial/create-image.html +++ b/static/tutorial/create-image.html @@ -1,6 +1,6 @@
- +
-

Once a container has terminated in Docker, the next step is to tag the container to an image, so it can be saved to a repository.

+

Once a container has terminated in Docker, the next step is to commit the container to an image, and then tag that image with a relevant name so it can be saved to a repository.

-

To do so, we run the docker commit with the container ID from the previous step and tag it to be a repository under quay.io. +

Docker lets us do this in one step with the commit command. To do so, we run the docker commit with the container ID from the previous step and tag it to be a repository under quay.io.

 docker commit {{ tour.tourScope.containerId || 'containerId' }} quay.io/{{ tour.tourScope.username }}/{{ tour.tourScope.repoName || 'myfirstrepo' }}