Clarify where the compose file should be located

Signed-off-by: Michael Irwin <mikesir87@gmail.com>

Resolves #102
This commit is contained in:
Michael Irwin 2022-12-19 17:25:01 -05:00
parent 25f962b5e1
commit eee88b403c
No known key found for this signature in database
GPG Key ID: 8C42FBB0E482C8CF

View File

@ -19,7 +19,7 @@ another system, you can install Docker Compose using [the instructions here](htt
## Creating our Compose File ## Creating our Compose File
1. At the root of the app project, create a file named `docker-compose.yml`. 1. Inside of the app folder, create a file named `docker-compose.yml` (next to the `Dockerfile` and `package.json` files).
1. In the compose file, we'll start off by defining a list of services (or containers) we want to run as part of our application. 1. In the compose file, we'll start off by defining a list of services (or containers) we want to run as part of our application.