1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:42:07 +02:00
tldr/pages/common/docker-system.md
Vitor Henrique 61405c6e0e
pages*: fix small typos (#11850)
* pages*: fix small typos

* pages/*: make help and version commands consistent

* pages/*: follow "path/to/file" pattern

* nop: generic display help wording
2023-12-27 12:11:30 +05:30

36 lines
783 B
Markdown

# docker system
> Manage Docker data and display system-wide information.
> More information: <https://docs.docker.com/engine/reference/commandline/system/>.
- Display help:
`docker system`
- Show docker disk usage:
`docker system df`
- Show detailed information on disk usage:
`docker system df --verbose`
- Remove unused data:
`docker system prune`
- Remove unused data created more than a specified amount of time in the past:
`docker system prune --filter="until={{hours}}h{{minutes}}m"`
- Display real-time events from the Docker daemon:
`docker system events`
- Display real-time events from containers streamed as valid JSON Lines:
`docker system events --filter 'type=container' --format '{{json .}}'`
- Display system-wide information:
`docker system info`