1
0
mirror of https://github.com/oceanprotocol/barge.git synced 2024-11-22 17:50:13 +01:00

Merge pull request #167 from oceanprotocol/feature/aquarius

bump default Aquarius, Faucet fix
This commit is contained in:
Matthias Kretschmann 2019-07-18 15:09:36 +02:00 committed by GitHub
commit f956a49589
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View File

@ -36,7 +36,7 @@ You need to have the newest versions of:
## Get Started
If you're new to Barge, it's best to do something like:
If you're new to Barge, it's best to start with the defaults:
```bash
git clone git@github.com:oceanprotocol/barge.git
@ -49,7 +49,7 @@ That will run the current default versions of Aquarius, Brizo, Pleuston, Keeper
<img width="486" alt="Welcome to Ocean Protocol" src="Welcome_to_Ocean_Protocol.png">
It's overkill, but to be _sure_ that you use exactly the Docker images and volumes you want, you can start by pruning all the Docker things in your system:
It's overkill, but to be _sure_ that you use exactly the Docker images and volumes you want, you can prune all the Docker things in your system first:
```bash
docker system prune --all --volumes
@ -65,7 +65,7 @@ The default versions are always a combination of component versions which are co
| Aquarius | Brizo | Keeper | Pleuston | Faucet |
| -------- | --------- | -------- | -------- | -------- |
| `v0.3.4` | `v0.3.14` | `v0.10.3` | `v0.4.2` | `v0.2.4` |
| `v0.3.8` | `v0.3.14` | `v0.10.3` | `v0.4.2` | `v0.2.4` |
You can use the `--latest` option to pull the most recent Docker images for all components, which are always tagged as `latest` in Docker. The `latest` Docker image tag derives from the `develop` branch of the component's Git repo.

View File

@ -17,6 +17,8 @@ services:
ipv4_address: 172.15.0.21
depends_on:
- mongodb
- keeper-node
environment:
FAUCET_NODE: ${KEEPER_RPC_URL}
NODE_ENV: 'production'
MONGO_URL: 'mongodb://mongodb:27017/faucetdbtest'

View File

@ -13,7 +13,7 @@ DIR="${DIR/ /\\ }"
COMPOSE_DIR="${DIR}/compose-files"
# Default versions of Aquarius, Brizo, Keeper Contracts and Pleuston
export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v0.3.4}
export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v0.3.8}
export BRIZO_VERSION=${BRIZO_VERSION:-v0.3.14}
export KEEPER_VERSION=${KEEPER_VERSION:-v0.10.3}
export PLEUSTON_VERSION=${PLEUSTON_VERSION:-v0.4.2}