https://github.com/thiunuwan/dockercommands
https://github.com/thiunuwan/dockercommands
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thiunuwan/dockercommands
- Owner: thiunuwan
- Created: 2024-07-09T06:26:24.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-11T05:23:37.000Z (11 months ago)
- Last Synced: 2024-12-27T07:46:23.921Z (5 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DockerCommands
### List All Running Containers
This command will show a table with details about each running container, such as its ID, image, command, status, ports, and names.
`docker ps`
### Show All Containers (Including Stopped Ones)
If you want to list all containers, including those that are stopped, use the -a option:`docker ps -a`