1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-03-19 06:39:44 +01:00

Fix: Standardize using "docker container ls" command when referencing listing containers (#5787)

This commit is contained in:
Anthony Pun 2024-06-02 11:53:45 -07:00 committed by Kamran Ahmed
parent be6b0128b1
commit 15b0e33542

View File

@ -16,7 +16,7 @@ This starts a new container and maps the host's port 8080 to the container's por
## Listing Containers
To list all running containers, use the `docker ps` command. To view all containers (including those that have stopped), use the `-a` flag:
To list all running containers, use the `docker container ls` command. To view all containers (including those that have stopped), use the `-a` flag:
```bash
docker container ls -a
@ -30,7 +30,7 @@ To access a running container's shell, use the `docker exec` command:
docker exec -it CONTAINER_ID bash
```
Replace `CONTAINER_ID` with the ID or name of your desired container. You can find this in the output of `docker ps`.
Replace `CONTAINER_ID` with the ID or name of your desired container. You can find this in the output of `docker container ls`.
## Stopping Containers