Skip to content

Commit

Permalink
Marking images/containers container as draft... for now
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelStott committed Dec 15, 2023
1 parent d3146f0 commit 19a1872
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/content/containers/Docker/images.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Images & Containers
draft: false
draft: true
chapter: false
weight: 8
---
Expand Down
4 changes: 2 additions & 2 deletions web/content/containers/Docker/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ chapter: false
weight: 6
---

_Docker_ is an open-source platform for developing and distributing containerized software.
_Docker_ is an open-source platform for developing, deploying, and distributing containerized software.

### Images and Containers

The two primary Docker entities are _images_ and _containers_. Images provide instructions for constructing the private filesystem and including any process executables. Images may be published and shared with others through _registeries_, such as _Docker Hub_. Images are defined via _Dockerfiles_ which provides a set of sequential instructions for building an image.
The two primary Docker entities are _images_ and _containers_. Images provide information for constructing the private filesystem and including any process executables. Images may be published and shared with others through _registeries_, such as _Docker Hub_. Images are defined via _Dockerfiles_ which provides a set of sequential instructions for building an image.

Containers are running instances of images. These container processes are isolated from each other and may be started, stopped, moved, or deleted via the _Docker CLI_. Any data within a container's private filesystem that is not written to persistent storage will be lost upon deleting the container.

Expand Down

0 comments on commit 19a1872

Please sign in to comment.