From 88c5a53bda7903ed1ecec72e69c0496e90982cd7 Mon Sep 17 00:00:00 2001 From: Ekwinder Saini Date: Mon, 24 Jul 2023 23:59:51 +0530 Subject: [PATCH] Modify "stop" to "stop and remove" to avoid container name conflict error. (#17816) Added instruction to removed the container along with stopping it to avoid error - You have to remove (or rename) that container to be able to reuse that name. --- language/python/develop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/python/develop.md b/language/python/develop.md index c95f49bfc6..beb57348d1 100644 --- a/language/python/develop.md +++ b/language/python/develop.md @@ -148,7 +148,7 @@ Now we can build our image. $ docker build --tag python-docker-dev . ``` -If you have any containers running from the previous sections using the name `rest-server` or port 8000, [stop](./run-containers.md/#stop-start-and-name-containers) them now. +If you have any containers running from the previous sections using the name `rest-server` or port 8000, [stop and remove](./run-containers.md/#stop-start-and-name-containers) them now. Now, let’s add the container to the database network and then run our container. This allows us to access the database by its container name.