Docker

From IDESG Wiki
Revision as of 19:33, 13 November 2020 by Tomjones (talk | contribs) (Created page with "==Full Title or Meme== Docker is a system for building, deploying and running complex images of a program with its runtime. ==Context== *With the rise of cloud computing t...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Full Title or Meme

Docker is a system for building, deploying and running complex images of a program with its runtime.

Context

  • With the rise of cloud computing the need arose to give users an easy way to create a run-time package that could be sent to any cloud Platform as a Service provider (PaaS) with complete interoperability.

Solutions

When you run a Docker container, these are the steps Docker actually goes through:
  1. Download the image
  2. Unpack the image into a "bundle". This flattens the layers into a single filesystem.
  3. Run the container from the bundle

References