Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions 03-Pull-from-DockerHub-and-Run-Docker-Images/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ kalyanreddy@Kalyans-Mac-mini-2 ~ %

## Step-4: List Running Containers
```
docker ps
docker ps -a
docker ps -a -q
docker ps currently running Docker containers. output:container ID, image, command, creation time, status, ports,
docker ps -a running, stopped, or have exited. Output:CONTAINER ID, IMAGE, COMMAND, CREATED, STATU
docker ps -a -q Lists only the container IDs of all containers, including running and stopped ones.
```

## Step-5: Connect to Container Terminal
Expand Down