From fe903e5c14ac3c061d1c0461beec365c9e8ea699 Mon Sep 17 00:00:00 2001 From: Shupeyko Nikita Date: Mon, 31 Jul 2017 13:27:58 +0300 Subject: [PATCH] Fix docs erros/typos (#1264) * Fix #.1 * Fix #.2 [Running management commands: "docker-compose -f production.yml run" to "docker-compose -f local.yml run'](https://cookiecutter-django.readthedocs.io/en/latest/developing-locally-docker.html#running-management-commands). * Fix #.3 Designate @bertdemiranda as a contributor (#1242). --- CONTRIBUTORS.rst | 1 + docs/developing-locally-docker.rst | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 4eb5b41c..60a29975 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -59,6 +59,7 @@ Listed in alphabetical order. Ben Warren `@bwarren2` Ben Lopatin Benjamin Abel + Bert de Miranda `@bertdemiranda`_ Bo Lopker `@blopker`_ Bouke Haarsma Brent Payne `@brentpayne`_ @brentpayne diff --git a/docs/developing-locally-docker.rst b/docs/developing-locally-docker.rst index cf24485b..99622c3c 100644 --- a/docs/developing-locally-docker.rst +++ b/docs/developing-locally-docker.rst @@ -59,13 +59,13 @@ You can also set the environment variable ``COMPOSE_FILE`` pointing to ``local.y And then run:: - $ docker-compose -f production.yml up + $ docker-compose up Running management commands ~~~~~~~~~~~~~~~~~~~~~~~~~~~ As with any shell command that we wish to run in our container, this is done -using the ``docker-compose -f production.yml run`` command. +using the ``docker-compose -f local.yml run`` command. To migrate your app and to create a superuser, run::