Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1.32 KB

containers.md

File metadata and controls

36 lines (24 loc) · 1.32 KB

Containers

Articles

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

Dockerfile

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
  • Cleanup everything: docker system prune -a -f

Tools

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."