docker system commands added (#1778)
* docker system commands added * .cache directory removed * .cache directory remove along with all unncessary files inside it * .cache directory added to gitignore * .cache in git ignore modified
This commit is contained in:
parent
90dbde9990
commit
ba8d9189ae
|
@ -4,6 +4,7 @@ _site
|
||||||
/node_modules
|
/node_modules
|
||||||
/vendor
|
/vendor
|
||||||
.idea/
|
.idea/
|
||||||
|
.cache/
|
||||||
|
|
||||||
# Generated by 'yarn dev'
|
# Generated by 'yarn dev'
|
||||||
/_includes/2017/critical/*
|
/_includes/2017/critical/*
|
||||||
|
|
22
docker.md
22
docker.md
|
@ -183,6 +183,28 @@ docker volume prune
|
||||||
|
|
||||||
Delete all the volumes
|
Delete all the volumes
|
||||||
|
|
||||||
|
### Systems
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker system df
|
||||||
|
```
|
||||||
|
|
||||||
|
Show docker disk usage
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker system events
|
||||||
|
```
|
||||||
|
|
||||||
|
Get real time events from the server
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker system info
|
||||||
|
```
|
||||||
|
|
||||||
|
Display system-wide information
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Also see
|
Also see
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue