mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 06:02:08 +02:00

* pages*: remove = from GNU-style long options * 7z: readd needed = * 7za: add missing = * 7zr: fix argument and option separation * astyle: readd missing = * aws-ecr: readd missing = * az-devops: readd missing = * csslint: readd missing = * cs-fetch: readd missing = * bzgrep: readd missing = * chromium: readd missing = * docker-commit: remove unnecessary = * docker-system: remove unnecessary = * docker-ps: remove unnecessary = * dockerd: remove unnecessary = * 7za: readd missing = * 7zr: readd missing = * chromium.de: readd missing = * chromium.de: readd missing = * bundletool: remove additional space Co-authored-by: Nicolas Kosinski <nicokosi@users.noreply.github.com> --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Nicolas Kosinski <nicokosi@users.noreply.github.com>
36 lines
783 B
Markdown
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`
|