diff --git a/docs_en/tutorial/using-docker-compose/index.md b/docs_en/tutorial/using-docker-compose/index.md index c80c2f8..91d545a 100644 --- a/docs_en/tutorial/using-docker-compose/index.md +++ b/docs_en/tutorial/using-docker-compose/index.md @@ -247,7 +247,7 @@ volumes: Now that we have our `docker-compose.yml` file, we can start it up! -1. Make sure no other copies of the app/db are running first (`docker ps` and `docker rm -f `). +1. Make sure no other copies of the app/db are running first (`docker-compose down --volumes`). 1. Start up the application stack using the `docker-compose up` command. We'll add the `-d` flag to run everything in the background. @@ -314,4 +314,4 @@ using into the appropriate compose format. At this point, we're starting to wrap up the tutorial. However, there are a few best practices about image building we want to cover, as there is a big issue with the Dockerfile we've been using. So, -let's take a look! \ No newline at end of file +let's take a look!