From 1db49a80876754d83b789cbec42eee8cb80c8dc3 Mon Sep 17 00:00:00 2001 From: Thomas Headle Date: Wed, 19 Dec 2018 00:16:07 -0700 Subject: [PATCH] Fixed spelling errors and flow (#24398) Minor changes to improve sentence structures and flow, as well as fixed a spelling error. --- guide/english/docker/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/docker/index.md b/guide/english/docker/index.md index da1c511072..d0c8f6d420 100644 --- a/guide/english/docker/index.md +++ b/guide/english/docker/index.md @@ -4,13 +4,13 @@ title: Docker ![alt text](https://www.docker.com/sites/default/files/horizontal.png) ## Docker -Docker is an open platform to build, ship, and run distributed applications. It is written in Go. It was first released in 2013 and is developed by Docker, Inc. +Docker, written in Go, is an open platform to build, ship, and run distributed applications. It was first released in 2013 and is developed by Docker, Inc. -Docker is used to run packages called "containers". Containers are isolated from each others and from the OS. These are more lightweight than virtual machines as they do not use the host machine to run an operating system. +Docker is used to run packages called "containers". Containers are isolated from each other and from the OS (Operating System). These are more lightweight than virtual machines as they do not use the host machine to run an operating system. Containerization, which is a way of deploying and running applications, runs isolated services which run natively on the Linux kernel. Memory can be set manually for each container in Docker. -Docker is used to simplify configurations, and ensure a smooth continuous integration and deployment flow. Specific containers can be specified for development, staging, and production environments. A true implementation of a container in production, according to the Docker manual, is to run it as a service, using the `docker-compose.yml` file for setup. This is a YAML file that defines how Docker containers should behave in production. +Docker is used to simplify configurations while ensuring a smooth continuous integration and deployment flow. Specific containers can be specified for development, staging, and production environments. A true implementation of a container in production, according to the Docker manual, is to run it as a service, using the `docker-compose.yml` file for setup. This is a YAML file that defines how Docker containers should behave in production. One of Docker's biggest advantages is that it can be used by a team using different operating systems to build projects without needing to worry about software conflicts.