Update docs for docker-compose.rdb.yml change

This commit is contained in:
Sylvain Bellemare 2017-08-01 20:51:02 +02:00 committed by Sylvain Bellemare
parent 4e2423c3de
commit 024d3ada8f

View File

@ -86,7 +86,7 @@ to rebuild them after the upgrade to install any new dependencies.
Start RethinkDB:
```bash
docker-compose up -d rdb
docker-compose -f docker-compose.rdb.yml up -d rdb
```
The RethinkDB web interface should be accessible at http://localhost:58080/.
@ -98,19 +98,19 @@ web interface at: http://0.0.0.0:58080/.
Start a BigchainDB node:
```bash
docker-compose up -d bdb-rdb
docker-compose -f docker-compose.rdb.yml up -d bdb-rdb
```
You can monitor the logs:
```bash
docker-compose logs -f bdb-rdb
docker-compose -f docker-compose.rdb.yml logs -f bdb-rdb
```
If you wish to run the tests:
```bash
docker-compose run --rm bdb-rdb py.test -v -n auto
docker-compose -f docker-compose.rdb.yml run --rm bdb-rdb pytest -v -n auto
```
### Docker with MongoDB