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:
Saikat Roy 2023-07-19 18:59:31 +06:00 committed by GitHub
parent 90dbde9990
commit ba8d9189ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

1
.gitignore vendored
View File

@ -4,6 +4,7 @@ _site
/node_modules
/vendor
.idea/
.cache/
# Generated by 'yarn dev'
/_includes/2017/critical/*

View File

@ -183,6 +183,28 @@ docker volume prune
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
--------