mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-11-22 17:50:13 +01:00
Merge branch 'master' into feature/faucet
This commit is contained in:
commit
15cac395ec
13
README.md
13
README.md
@ -15,6 +15,7 @@
|
|||||||
- [Pleuston](#pleuston)
|
- [Pleuston](#pleuston)
|
||||||
- [Aquarius](#aquarius)
|
- [Aquarius](#aquarius)
|
||||||
- [Brizo](#brizo)
|
- [Brizo](#brizo)
|
||||||
|
- [Events Handler](#events-handler)
|
||||||
- [Keeper Node](#keeper-node)
|
- [Keeper Node](#keeper-node)
|
||||||
- [Secret Store](#secret-store)
|
- [Secret Store](#secret-store)
|
||||||
- [Faucet](#faucet)
|
- [Faucet](#faucet)
|
||||||
@ -65,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.3.1` |
|
| `v0.3.8` | `v0.4.4` | `v0.1.2` | `v0.11.1` | `v0.5.1` | `v0.3.1` |
|
||||||
|
|
||||||
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.
|
||||||
|
|
||||||
@ -81,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
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -97,7 +98,7 @@ will use the default Docker image tags for Aquarius, Keeper Contracts and Pleust
|
|||||||
| `--no-pleuston` | Start up Ocean without the `pleuston` Building Block. Helpful for development on `pleuston`. |
|
| `--no-pleuston` | Start up Ocean without the `pleuston` Building Block. Helpful for development on `pleuston`. |
|
||||||
| `--no-aquarius` | Start up Ocean without the `aquarius` Building Block. |
|
| `--no-aquarius` | Start up Ocean without the `aquarius` Building Block. |
|
||||||
| `--no-brizo` | Start up Ocean without the `brizo` Building Block. |
|
| `--no-brizo` | Start up Ocean without the `brizo` Building Block. |
|
||||||
| `--no-events-handler` | Start up Ocean without the `events-handler` Building Block. |
|
| `--no-events-handler` | Start up Ocean without the `events-handler` Building Block. |
|
||||||
| `--no-secret-store` | Start up Ocean without the `secret-store` Building Block. |
|
| `--no-secret-store` | Start up Ocean without the `secret-store` Building Block. |
|
||||||
| `--no-faucet` | Start up Ocean without the `faucet` Building Block. |
|
| `--no-faucet` | Start up Ocean without the `faucet` Building Block. |
|
||||||
| `--mongodb` | Start up Ocean with MongoDB as DB engine for Aquarius instead of Elasticsearch. |
|
| `--mongodb` | Start up Ocean with MongoDB as DB engine for Aquarius instead of Elasticsearch. |
|
||||||
@ -151,9 +152,9 @@ By default it will start one container. This Building Block can be disabled by s
|
|||||||
|
|
||||||
By default it will start one container. This Building Block can be disabled by setting the `--no-events-handler` flag.
|
By default it will start one container. This Building Block can be disabled by setting the `--no-events-handler` flag.
|
||||||
|
|
||||||
| Hostname | External Port | Internal URL | Local URL | Description |
|
| Hostname | External Port | Internal URL | Local URL | Description |
|
||||||
| ----------------- | ------------- | ----------------- | --------------------- | -------------------------------------------------------------------- |
|
| ---------------- | ------------- | ------------ | --------- | ----------------------------------------------------------------- |
|
||||||
| `events-handler` | | | | [Events-handler](https://github.com/oceanprotocol/events-handler-py) |
|
| `events-handler` | | | | [Events-handler](https://github.com/oceanprotocol/events-handler) |
|
||||||
|
|
||||||
### Keeper Node
|
### Keeper Node
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
version: '3'
|
version: '3'
|
||||||
services:
|
services:
|
||||||
events-handler:
|
events-handler:
|
||||||
image: oceanprotocol/events-handler-py:$EVENTS_HANDLER_VERSION
|
image: oceanprotocol/events-handler:$EVENTS_HANDLER_VERSION
|
||||||
networks:
|
networks:
|
||||||
backend:
|
backend:
|
||||||
ipv4_address: 172.15.0.22
|
ipv4_address: 172.15.0.22
|
||||||
|
@ -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)
|
||||||
@ -204,7 +211,7 @@ while :; do
|
|||||||
;;
|
;;
|
||||||
--no-events-handler)
|
--no-events-handler)
|
||||||
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/events_handler.yml/}"
|
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/events_handler.yml/}"
|
||||||
printf $COLOR_Y'Starting without EventsHandler...\n\n'$COLOR_RESET
|
printf $COLOR_Y'Starting without Events Handler...\n\n'$COLOR_RESET
|
||||||
;;
|
;;
|
||||||
--no-brizo)
|
--no-brizo)
|
||||||
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/brizo.yml/}"
|
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/brizo.yml/}"
|
||||||
|
Loading…
Reference in New Issue
Block a user