Docker Basics: Using Docker Desktop to manage Containers

Join the AI Workshop to learn more about AI and how it can be applied to web development. Next cohort February 1st, 2026

The AI-first Web Development BOOTCAMP cohort starts February 24th, 2026. 10 weeks of intensive training and hands-on projects.


Once you start a Docker container, if you go and click the Docker icon in the toolbar and choose Dashboard, you will see it in Docker Desktop:

Now if you hover the container with the mouse, you will see 5 buttons:

They are:

  • Open in browser
  • CLI
  • Stop
  • Restart
  • Delete

You can manage your container lifecycle through them.

Clicking a container name in the list will reveal more data, including a Logs manager:

An inspector that tells you useful information about the container:

And stats about the container CPU, Memory, Network and Disk usage:

Go back and click the Open in browser button and the http://localhost/tutorial URL will open (http://localhost redirects to http://localhost/tutorial in this app):

This is the content of a website that’s provided by our sample image. Now go back to Docker Desktop and press the Stop button

and refresh the page, it does not work any more:

Go back to Docker Desktop and press the Start button, it will work again.

Try pressing the CLI button. A new terminal window will open and you will automatically be connected to the Docker Container, as the root user:

In the above picture the whoami command returns the current user name.

Lessons in this unit:

0: Introduction
1: Introduction to Docker
2: Installing Docker on macOS
3: First steps with Docker
4: Docker Images
5: Docker Containers
6: Dockerfiles
7: ▶︎ Using Docker Desktop to manage Containers
8: Sharing Images on Docker Hub
9: Create a Node.js Docker Container