mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
docker-system: add page (#4310)
This commit is contained in:
parent
04e4ac93ab
commit
c00548df93
1 changed files with 36 additions and 0 deletions
36
pages/common/docker-system.md
Normal file
36
pages/common/docker-system.md
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# docker system
|
||||||
|
|
||||||
|
> Manage Docker data and display system-wide information.
|
||||||
|
> More information: <https://docs.docker.com/engine/reference/commandline/system/>.
|
||||||
|
|
||||||
|
- Show 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`
|
Loading…
Add table
Reference in a new issue