| Name | Comments |
|---|---|
| Docker CheatSheet | |
| Everything you need to know about containers | |
| A container networking overview | |
| My Docker Cheat Sheet | |
| Docker Networking Deep Dive |
| Name | Comments |
|---|---|
| awesome-docker |
- Stop and remove all containers:
docker container stop $(docker container ls -aq) - Run container with bash shell:
docker run -ti ubuntu:latest bash - Check how many containers are running:
docker info - Cleanup everything:
docker system prune -a -f
| Name | Description |
|---|---|
| dive | "A tool for exploring a docker image, layer content, ..." |
| trivy | "A Simple and Comprehensive Vulnerability Scanner for Containers and other Artifacts, Suitable for CI." |