Skip to content

Commit

Permalink
rm breaking brackets (#209)
Browse files Browse the repository at this point in the history
these brackets break the whole build, which is a problem of its own but for now let's remove these weird brackets, which are autoadded by markdown prettier just to grieve me
  • Loading branch information
SallyMcGrath authored May 22, 2024
1 parent 836c0c6 commit 16d0cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/docker-cloud/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ We're going to build a simple Go server, and then _containerise_ it.

> In this project, we'll use the terms containerise and dockerise interchangeably to mean the same thing: making an application run in a container using Docker.
A **container** is a kind of [sandboxed](<https://en.m.wikipedia.org/wiki/Sandbox_(computer_security)>) process on a computer that is isolated from all other processes, unless specifically allowed.
A **container** is a kind of [sandboxed](https://en.m.wikipedia.org/wiki/Sandbox_(computer_security)) process on a computer that is isolated from all other processes, unless specifically allowed.

Containers have an isolated filesystem. This filesystem is provided by a container **image**. Since the image contains the container’s filesystem, it must contain everything needed to run an application: all dependencies, configurations, scripts, binaries, & other files or data. The image also contains other configuration for the container, such as environment variables, a default command to run, and other metadata.

Expand Down

0 comments on commit 16d0cbb

Please sign in to comment.