From 83474ce9800b221c3168e40a19616edc88402b9c Mon Sep 17 00:00:00 2001 From: LRubin Date: Fri, 9 Dec 2016 13:14:32 -0800 Subject: [PATCH] fix the verify step in cloud tutorial Signed-off-by: LRubin --- .../deploy-app/4_push_to_cloud_registry.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/docker-cloud/getting-started/deploy-app/4_push_to_cloud_registry.md b/docker-cloud/getting-started/deploy-app/4_push_to_cloud_registry.md index 296da97602..8e8dd5967a 100644 --- a/docker-cloud/getting-started/deploy-app/4_push_to_cloud_registry.md +++ b/docker-cloud/getting-started/deploy-app/4_push_to_cloud_registry.md @@ -36,14 +36,12 @@ $ docker push $DOCKER_ID_USER/quickstart-python ``` $ docker push $DOCKER_ID_USER/quickstart-go ``` + ## Verify the image location -After the push command completes, verify that the image is now in Docker Cloud's registry. Do this by running the `docker-cloud repository ls` command. You should see only one of the images below. -``` -$ docker-cloud repository ls -NAME DESCRIPTION -my-username/quickstart-python -my-username/quickstart-go -``` +After the push command completes, verify that the image is now in Docker Cloud's +registry. Do this by logging in to [Docker Cloud](https://cloud.docker.com) and +clicking **Repositories** in the left navigation. Your image should appear in +the repository list. -Next: [Deploy the app as a Docker Cloud service](5_deploy_the_app_as_a_service.md). \ No newline at end of file +Next: [Deploy the app as a Docker Cloud service](5_deploy_the_app_as_a_service.md).