Skip to content

Commit

Permalink
adding graphic to docker content
Browse files Browse the repository at this point in the history
  • Loading branch information
erikaheidi committed Nov 16, 2023
1 parent 3a3fa4c commit 574fdda
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions en/content/onepagers/docker-basics-onepager.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ cover_image: https://cdn.erikaheidi.com/blog/dev-env-docker.png

Docker is a software used to build and run [containers](https://edu.chainguard.dev/software-security/what-are-containers/). Unlike virtual machines, containers do not emulate an entire operating system, relying on the host OS to provide an isolated filesystem that consumes less resources than traditional VMs, but still provide a fully functional runtime based on a chosen operating system.

![The container model as a high-level overview](https://cdn.erikaheidi.com/blog/container-model-graph.png)

The build steps necessary to (re)create a Docker container image are defined in a [Dockerfile](https://docs.docker.com/engine/reference/builder/#dockerfile-reference). This file may contain special instructions to install packages, create users, and run arbitrary system commands.

Container images can be hosted in a remote registry that allow images to be pulled from different locations. The default Docker registry is [Docker Hub](https://hub.docker.com), but there are many others. When using images from registries other than Docker Hub, you'll need to specify the registry URL along the image identifier.
Expand Down

0 comments on commit 574fdda

Please sign in to comment.