From 9639fe6859b584b4c6e8d3d9979af4a510c8bb33 Mon Sep 17 00:00:00 2001 From: Sharjeel Faiq <63894149+sharjeelfaiq@users.noreply.github.com> Date: Fri, 9 Jan 2026 10:41:57 +0500 Subject: [PATCH] Update what-is-a-container.md Fixed grammar issue --- .../docker-concepts/the-basics/what-is-a-container.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/get-started/docker-concepts/the-basics/what-is-a-container.md b/content/get-started/docker-concepts/the-basics/what-is-a-container.md index be1bed4e6fa8..fcd4cfcea3fe 100644 --- a/content/get-started/docker-concepts/the-basics/what-is-a-container.md +++ b/content/get-started/docker-concepts/the-basics/what-is-a-container.md @@ -29,7 +29,7 @@ What is a container? Simply put, containers are isolated processes for each of y Here's what makes them awesome. Containers are: - Self-contained. Each container has everything it needs to function with no reliance on any pre-installed dependencies on the host machine. -- Isolated. Since containers are run in isolation, they have minimal influence on the host and other containers, increasing the security of your applications. +- Isolated. Since containers run in isolation, they have minimal influence on the host and other containers, increasing the security of your applications. - Independent. Each container is independently managed. Deleting one container won't affect any others. - Portable. Containers can run anywhere! The container that runs on your development machine will work the same way in a data center or anywhere in the cloud!