mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-11-26 12:28:59 +01:00
Merge pull request #167 from oceanprotocol/feature/aquarius
bump default Aquarius, Faucet fix
This commit is contained in:
commit
f956a49589
@ -36,7 +36,7 @@ You need to have the newest versions of:
|
|||||||
|
|
||||||
## Get Started
|
## 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
|
```bash
|
||||||
git clone git@github.com:oceanprotocol/barge.git
|
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">
|
<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
|
```bash
|
||||||
docker system prune --all --volumes
|
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 |
|
| 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.
|
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.
|
||||||
|
|
||||||
|
@ -17,6 +17,8 @@ services:
|
|||||||
ipv4_address: 172.15.0.21
|
ipv4_address: 172.15.0.21
|
||||||
depends_on:
|
depends_on:
|
||||||
- mongodb
|
- mongodb
|
||||||
|
- keeper-node
|
||||||
environment:
|
environment:
|
||||||
|
FAUCET_NODE: ${KEEPER_RPC_URL}
|
||||||
NODE_ENV: 'production'
|
NODE_ENV: 'production'
|
||||||
MONGO_URL: 'mongodb://mongodb:27017/faucetdbtest'
|
MONGO_URL: 'mongodb://mongodb:27017/faucetdbtest'
|
||||||
|
@ -13,7 +13,7 @@ DIR="${DIR/ /\\ }"
|
|||||||
COMPOSE_DIR="${DIR}/compose-files"
|
COMPOSE_DIR="${DIR}/compose-files"
|
||||||
|
|
||||||
# Default versions of Aquarius, Brizo, Keeper Contracts and Pleuston
|
# 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 BRIZO_VERSION=${BRIZO_VERSION:-v0.3.14}
|
||||||
export KEEPER_VERSION=${KEEPER_VERSION:-v0.10.3}
|
export KEEPER_VERSION=${KEEPER_VERSION:-v0.10.3}
|
||||||
export PLEUSTON_VERSION=${PLEUSTON_VERSION:-v0.4.2}
|
export PLEUSTON_VERSION=${PLEUSTON_VERSION:-v0.4.2}
|
||||||
|
Loading…
Reference in New Issue
Block a user