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