From d896acd9c6dc36b82be1150973b4e0ba0ec67e33 Mon Sep 17 00:00:00 2001 From: Sam V <26878263+myverdict@users.noreply.github.com> Date: Tue, 12 Mar 2024 15:24:19 -0500 Subject: [PATCH] Update section-1.md Corrected docker command in the exercise from `docker ps -as` to `docker ps -a` --- docs/part-1/section-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/part-1/section-1.md b/docs/part-1/section-1.md index 9c2a6be2..3681ed47 100644 --- a/docs/part-1/section-1.md +++ b/docs/part-1/section-1.md @@ -324,7 +324,7 @@ Some of the shorthands are legacy version of doing the same thing. You can use e :::info Exercise 1.2: Cleanup - We have containers and an image that are no longer in use and are taking up space. Running `docker ps -as` and `docker image ls` will confirm this. + We have containers and an image that are no longer in use and are taking up space. Running `docker ps -a` and `docker image ls` will confirm this. Clean the Docker daemon by removing all images and containers.