This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul class="list-unstyled d-inline-flex flex-wrap p-0 m-0"> | |
| <li class="text-muted"> | |
| <span class="badge badge-secondary">title</span>-<span class="badge badge-success mr-2"> number </span> | |
| </li> | |
| </ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Check CPU consumption | |
| $ docker stats $(docker inspect -f "{{ .Name }}" $(docker ps -q)) | |
| # Delete all containers | |
| $ docker rm $(docker ps -aq) | |
| # Delete all images | |
| $ docker rmi $(docker images -q) |