mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-12-02 05:57:21 +01:00
Merge pull request #188 from oceanprotocol/feature/update-brizo
feature/update-brizo
This commit is contained in:
commit
ff02618976
@ -66,7 +66,7 @@ The default versions are always a combination of component versions which are co
|
|||||||
|
|
||||||
| Aquarius | Brizo | Events Handler | Keeper | Pleuston | Faucet |
|
| Aquarius | Brizo | Events Handler | Keeper | Pleuston | Faucet |
|
||||||
| -------- | -------- | -------------- | --------- | -------- | -------- |
|
| -------- | -------- | -------------- | --------- | -------- | -------- |
|
||||||
| `v0.3.8` | `v0.4.2` | `v0.1.2` | `v0.11.1` | `v0.5.1` | `v0.2.6` |
|
| `v0.3.8` | `v0.4.4` | `v0.1.2` | `v0.11.1` | `v0.5.1` | `v0.2.6` |
|
||||||
|
|
||||||
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 default main 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 default main branch of the component's Git repo.
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ You can override the Docker image tag used for a particular component by setting
|
|||||||
For example:
|
For example:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
export BRIZO_VERSION=v0.2.1
|
export BRIZO_VERSION=v0.4.4
|
||||||
./start_ocean.sh
|
./start_ocean.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ 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.8}
|
export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v0.3.8}
|
||||||
export BRIZO_VERSION=${BRIZO_VERSION:-v0.4.2}
|
export BRIZO_VERSION=${BRIZO_VERSION:-v0.4.4}
|
||||||
export EVENTS_HANDLER_VERSION=${EVENTS_HANDLER_VERSION:-v0.1.2}
|
export EVENTS_HANDLER_VERSION=${EVENTS_HANDLER_VERSION:-v0.1.2}
|
||||||
export KEEPER_VERSION=${KEEPER_VERSION:-v0.11.1}
|
export KEEPER_VERSION=${KEEPER_VERSION:-v0.11.1}
|
||||||
export PLEUSTON_VERSION=${PLEUSTON_VERSION:-v0.5.1}
|
export PLEUSTON_VERSION=${PLEUSTON_VERSION:-v0.5.1}
|
||||||
@ -172,6 +172,13 @@ DOCKER_COMPOSE_EXTRA_OPTS="${DOCKER_COMPOSE_EXTRA_OPTS:-}"
|
|||||||
while :; do
|
while :; do
|
||||||
case $1 in
|
case $1 in
|
||||||
#################################################
|
#################################################
|
||||||
|
# Log level
|
||||||
|
#################################################
|
||||||
|
--debug)
|
||||||
|
export BRIZO_LOG_LEVEL="DEBUG"
|
||||||
|
export EVENTS_HANDLER_LOG_LEVEL="DEBUG"
|
||||||
|
;;
|
||||||
|
#################################################
|
||||||
# Disable color
|
# Disable color
|
||||||
#################################################
|
#################################################
|
||||||
--no-ansi)
|
--no-ansi)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user