Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.05 KB

docker.md

File metadata and controls

26 lines (19 loc) · 1.05 KB

Docker

Articles

Name Comments
Docker CheatSheet
Everything you need to know about containers
A container networking overview
My Docker Cheat Sheet
Docker Networking Deep Dive

Projects

Name Comments
awesome-docker

Cheatsheet

  • 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
  • Check the docker images on your system: docker images
  • Cleanup everything: docker system prune -a -f