1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-20 07:48:06 +02:00

Update README.md

Fix typo

Signed-off-by: pbkompasz <47194071+pbkompasz@users.noreply.github.com>
This commit is contained in:
pbkompasz 2023-02-14 09:34:32 +02:00 committed by GitHub
parent e6b1d2755f
commit 73fe014011
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -108,7 +108,7 @@ In this step, you create a Django starter project by building the image from the
command as follows.
```console
sudo docker compose run web django-admin startproject composeexample .
sudo docker-compose run web django-admin startproject composeexample .
```
This instructs Compose to run `django-admin startproject composeexample`
@ -121,7 +121,7 @@ In this step, you create a Django starter project by building the image from the
instructs Django to create a set of files and directories representing a
Django project.
3. After the `docker compose` command completes, list the contents of your project.
3. After the `docker-compose` command completes, list the contents of your project.
```console
$ ls -l