From b0ccda058edc65c5b99892873037d20741eb43ce Mon Sep 17 00:00:00 2001 From: Sergei Date: Wed, 28 Dec 2016 23:06:39 +0700 Subject: [PATCH] typo fixed --- compose/django.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/django.md b/compose/django.md index b94e698eb5..0d77a72098 100644 --- a/compose/django.md +++ b/compose/django.md @@ -91,7 +91,7 @@ In this step, you create a Django started project by building the image from the docker-compose run web django-admin.py startproject composeexample . - This instructs Compose to run `django-admin.py startproject composeeexample` + This instructs Compose to run `django-admin.py startproject composeexample` in a container, using the `web` service's image and configuration. Because the `web` image doesn't exist yet, Compose builds it from the current directory, as specified by the `build: .` line in `docker-compose.yml`.