From e1d2c07360e6eb328529281bb17a895ddab7b160 Mon Sep 17 00:00:00 2001 From: Kosmas Chatzimichalis Date: Thu, 15 Nov 2018 07:05:57 +0100 Subject: [PATCH] fix typo (#26453) --- guide/english/devops/docker/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/devops/docker/index.md b/guide/english/devops/docker/index.md index 4bf5023394..58fc765ca0 100644 --- a/guide/english/devops/docker/index.md +++ b/guide/english/devops/docker/index.md @@ -6,7 +6,7 @@ title: Docker Docker is an open-source project based on Linux containers. It uses Linux Kernel features like namespaces and control groups to create containers on top of an operating system. -Docker uses containers (a runtime instance of an image) to create environments that can easily build, ship, and run applications. The main benefit is that Docker containers run completely isolated from the host environment by default, only accessing host files and ports if configured to do so. This is a great alternative to virutal machines(VMs) that are often resource intensive. VMs disk image and application state are an entanglement of OS settings, system-installed dependencies, OS security patches, and other easy-to-lose, hard-to-replicate ephemera. +Docker uses containers (a runtime instance of an image) to create environments that can easily build, ship, and run applications. The main benefit is that Docker containers run completely isolated from the host environment by default, only accessing host files and ports if configured to do so. This is a great alternative to virtual machines(VMs) that are often resource intensive. VMs disk image and application state are an entanglement of OS settings, system-installed dependencies, OS security patches, and other easy-to-lose, hard-to-replicate ephemera. Docker is a computer program that performs operating-system-level virtualization, also known as "containerization".