From 5aa1126769ed97ff9044cbb12f4679e8d64b0780 Mon Sep 17 00:00:00 2001 From: Jeffrey Borek Date: Tue, 20 Feb 2018 18:51:40 -0800 Subject: [PATCH] added docker glossary entry (#7470) * added docker glossay entry Signed-off-by: Jeffrey Borek * Update docker.yaml --- _data/glossary/docker.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 _data/glossary/docker.yaml diff --git a/_data/glossary/docker.yaml b/_data/glossary/docker.yaml new file mode 100644 index 0000000000..d055a99f42 --- /dev/null +++ b/_data/glossary/docker.yaml @@ -0,0 +1,9 @@ +id: docker +name: docker +full-link: /docs/reference/kubectl/docker-cli-to-kubectl/ +tags: +- fundamental +short-description: > + Docker is a software technology providing operating-system-level virtualization also known as containers. +long-description: > + Docker uses the resource isolation features of the Linux kernel such as cgroups and kernel namespaces, and a union-capable file system such as OverlayFS and others to allow independent "containers" to run within a single Linux instance, avoiding the overhead of starting and maintaining virtual machines (VMs).