From 09f5e8dab6755f9d11db076a5f0318d25bdab324 Mon Sep 17 00:00:00 2001 From: Imran Rahman Date: Thu, 27 Jul 2023 19:26:04 +0600 Subject: [PATCH] explicitly state that docker exec does not work --- docs/developing-locally-docker.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developing-locally-docker.rst b/docs/developing-locally-docker.rst index 680f249dd..95e65d0f2 100644 --- a/docs/developing-locally-docker.rst +++ b/docs/developing-locally-docker.rst @@ -77,7 +77,7 @@ As with any shell command that we wish to run in our container, this is done usi $ docker-compose -f local.yml run --rm django python manage.py createsuperuser Here, ``django`` is the target service we are executing the commands against. - +Also, please note that the ``docker exec`` does not work for running management commands. (Optionally) Designate your Docker Development Server IP --------------------------------------------------------