Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 862 Bytes

File metadata and controls

44 lines (27 loc) · 862 Bytes

Docker Notebook

Concepts

Container

  • an isolated unit of software(code, libraries, services, dependencies, processes - all packaged up together)

  • virtualizes the OS

  • is a running instance of an image

  • more resources are shared between containers

VM

  • virtualizes the hardware

Image

  • shareable chunk of functionality (server, db engine, Linux distribution)

OS kernel

  • interacts with the hardware

Useful Commands

List names of all containers

docker ps -a --format="{{.Names}}"