Add instructions for rebuilding docker images after upgrading

This commit is contained in:
Brett Sun 2016-12-20 13:52:46 +01:00
parent 8d0ff25a39
commit ad6f267055
2 changed files with 11 additions and 0 deletions

View File

@ -50,6 +50,9 @@ Build the images:
docker-compose build
```
**Note**: If you're upgrading BigchainDB and have previously already built the images, you may need
to rebuild them after the upgrade to install any new dependencies.
Start RethinkDB:
```bash

View File

@ -63,6 +63,14 @@ then run the tests using:
$ docker-compose run --rm bdb py.test -v
```
If you've upgraded to a newer version of BigchainDB, you might have to rebuild the images before
being able to run the tests. Run:
```text
$ docker-compose build
```
to rebuild all the images (usually you only need to rebuild the `bdb` image).
## Automated Testing of All Pull Requests