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' }}