diff --git a/get-started/02_our_app.md b/get-started/02_our_app.md index 4b7c8c122c..42dadcbedd 100644 --- a/get-started/02_our_app.md +++ b/get-started/02_our_app.md @@ -135,9 +135,37 @@ Now that you have an image, you can run the application in a [container](../get- At this point, you should have a running todo list manager with a few items, all built by you. -If you take a quick look at your Docker Dashboard, you should see at least one container running that is using the `getting-started` image and on port `3000`. +If you take a quick look at your containers, you should see at least one container running that is using the `getting-started` image and on port `3000`. To see your containers, you can use the CLI or Docker Desktop's graphical interface. -![Docker Dashboard with tutorial and app containers running](images/dashboard-two-containers.png) + +
+
+ +Run the following `docker ps` command in a terminal to list your containers. + +```console +$ docker ps +``` +Output similar to the following should appear. +```console +CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES +df784548666d getting-started "docker-entrypoint.s…" 2 minutes ago Up 2 minutes 0.0.0.0:3000->3000/tcp priceless_mcclintock +``` + +
+
+
+ +In Docker Desktop, select the **Containers** tab to see a list of your containers. + +![Docker Desktop with get-started container running](images/dashboard-two-containers.png) + +
+
+
## Next steps diff --git a/get-started/images/dashboard-two-containers.png b/get-started/images/dashboard-two-containers.png index 9628e9da1d..daeb0ea655 100644 Binary files a/get-started/images/dashboard-two-containers.png and b/get-started/images/dashboard-two-containers.png differ