From 0c654c5aac30c3db3818f40c133ed5b41daa772d Mon Sep 17 00:00:00 2001 From: Anh Tran Date: Sun, 21 Mar 2021 23:12:38 +0700 Subject: [PATCH] doc: fix typo remove wrong comma --- language/python/run-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/python/run-containers.md b/language/python/run-containers.md index ed985d5b45..f144964972 100644 --- a/language/python/run-containers.md +++ b/language/python/run-containers.md @@ -104,7 +104,7 @@ CONTAINER ID IMAGE COMMAND CREATED ## Stop, start, and name containers -You can start, stop, and restart Docker containers. When we stop a container, it is not removed, but the status is changed to stopped and the process inside the container is stopped. When we ran the `docker ps` command in the previous ,module, the default output only shows running containers. When we pass the `--all` or `-a` for short, we see all containers on our machine, irrespective of their start or stop status. +You can start, stop, and restart Docker containers. When we stop a container, it is not removed, but the status is changed to stopped and the process inside the container is stopped. When we ran the `docker ps` command in the previous module, the default output only shows running containers. When we pass the `--all` or `-a` for short, we see all containers on our machine, irrespective of their start or stop status. ```shell $ docker ps -a