From 0371f3cb28053da4836746cf7f73a4b6b45cba60 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 13 Jan 2021 14:31:39 +0100 Subject: [PATCH] get-started: minor rephrasing Reduce the use of "simply", "simple" Signed-off-by: Sebastiaan van Stijn --- get-started/index.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/get-started/index.md b/get-started/index.md index 620a7355dc..55b49667d8 100644 --- a/get-started/index.md +++ b/get-started/index.md @@ -127,16 +127,17 @@ randomly created name. So, you'll most likely have a different name. ## What is a container? Now that you've run a container, what _is_ a container? Simply put, a container is -simply another process on your machine that has been isolated from all other processes -on the host machine. That isolation leverages [kernel namespaces and cgroups](https://medium.com/@saschagrunert/demystifying-containers-part-i-kernel-space-2c53d6979504), features that have been -in Linux for a long time. Docker has worked to make these capabilities approachable and easy to use. +a sandboxed process on your machine that is isolated from all other processes +on the host machine. That isolation leverages [kernel namespaces and cgroups](https://medium.com/@saschagrunert/demystifying-containers-part-i-kernel-space-2c53d6979504), +features that have been in Linux for a long time. Docker has worked to make these +capabilities approachable and easy to use. > **Creating containers from scratch** > > If you'd like to see how containers are built from scratch, Liz Rice from Aqua Security -> has a fantastic talk in which she creates a container from scratch in Go. While she makes -> a simple container, this talk doesn't go into networking, using images for the filesystem, -> and more. But, it gives a _fantastic_ deep dive into how things are working. +> has a fantastic talk in which she creates a container from scratch in Go. While the talk +> does not go into networking, using images for the filesystem, and other advanced topics, +> it gives a _fantastic_ deep dive into how things are working. > >