Add rails data_updates:run to Docker documentation (#6097)

This commit is contained in:
Michael Kohl 2020-02-17 20:19:40 +07:00 committed by GitHub
parent 7ff79f77b8
commit 1458b42d18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,3 +93,12 @@ Please execute the script itself to view all additional options:
done via the GUI:
![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:
```
Data update scripts need to be run before you can start the application. Please run rake data_updates:run (RuntimeError)
```
run the following command:
```sh
docker-compose run web data_updates:run
```