Docs: Fix docker-compose instructions (#11274)

* docs: minor typos

* docs: restore stand up terminology

* docs: typo fix
This commit is contained in:
Alexis Hope 2020-11-06 01:12:40 +11:00 committed by GitHub
parent ae596f3635
commit 7a6ad7b83a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@ title: Preparing a Pull Request
- Try to keep the pull requests small. A pull request should try its very best
to address only a single concern.
- If you plan to do further work after the PR is submit, please use the
- If you plan to do further work after the PR has been submitted, please use the
[Draft PR](https://github.blog/2019-02-14-introducing-draft-pull-requests/)
feature.
- Make sure all tests pass and add additional tests for the code you submit.

View file

@ -111,14 +111,14 @@ The script executes the following steps:
![docker gui](https://user-images.githubusercontent.com/47985/74210448-b63b7c80-4c83-11ea-959b-02249b2a6952.png)
- In case `rails server` doesn't start with the following message:
- In case `rails server` starts with the following message:
```
```shell
Data update scripts need to be run before you can start the application. Please run rails data_updates:run (RuntimeError)
```
run the following command:
```shell
docker-compose run web rails data_updates:run
docker-compose run rails rails data_updates:run
```