...

/

Do-It-Yourself: Post-Mortem Inspection

Do-It-Yourself: Post-Mortem Inspection

In this lesson, you will explore some container management commands on your hello-world container.

We'll cover the following...

The hello-world container we previously ran stopped because its only job was to output text. We’ll soon run more advanced containers, but before we do that, let’s play with that stopped container in order to get a better grip of container tooling.

Run the following command on a command-line:

Press + to interact
docker ps

There is no output because there is no container currently running on your machine. Now run the following command on a command-line:

Press + to interact
docker ps -a

You should see output similar to the one below, although the exact ...