Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed agent & downgraded aquarius #206

Merged
merged 1 commit into from
Dec 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ The default versions are always a combination of component versions which are co

| Aquarius | Brizo | Events Handler | Keeper | Commons | Faucet | Agent |
| -------- | -------- | -------------- | --------- | -------- | -------- | ------ |
| `v1.0.5` | `v0.7.2` | `v0.3.4` | `v0.12.7` | `v2.0.0` | `v0.3.2` | latest |
| `v1.0.3` | `v0.7.2` | `v0.3.4` | `v0.12.7` | `v2.0.0` | `v0.3.2` | latest |

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.

Expand Down
12 changes: 7 additions & 5 deletions compose-files/agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ services:
- 4040:4040
environment:
LOCAL_CONTRACTS: ${KEEPER_DEPLOY_CONTRACTS}
aquariusUri: ${COMMONS_AQUARIUS_URI}
aquariusUri: ${AQUARIUS_URI}
brizoAddress: ${PROVIDER_ADDRESS}
nodeUri: ${COMMONS_KEEPER_RPC_HOST}
brizoUri: ${COMMONS_BRIZO_URL}
secretstoreUri: ${COMMONS_SECRET_STORE_URL}
faucetUri: ${COMMONS_FAUCET_URL}
nodeUri: ${KEEPER_RPC_URL}
brizoUri: ${BRIZO_URL}
secretstoreUri: ${SECRET_STORE_URL}
faucetUri: ${FAUCET_URL}
PRIVATE_KEY: ${AGENT_PRIVATE_KEY}
enable_publish: 'true'
enable_consume: 'true'
volumes:
- ${KEEPER_ARTIFACTS_FOLDER}:/usr/src/app/node_modules/@oceanprotocol/keeper-contracts/artifacts/:ro

Expand Down
6 changes: 3 additions & 3 deletions start_ocean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ DIR="${DIR/ /\\ }"
COMPOSE_DIR="${DIR}/compose-files"

# Default versions of Aquarius, Brizo, Keeper Contracts and Commons
export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v1.0.5}
export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v1.0.3}
export BRIZO_VERSION=${BRIZO_VERSION:-v0.7.2}
export EVENTS_HANDLER_VERSION=${EVENTS_HANDLER_VERSION:-v0.3.4}
export KEEPER_VERSION=${KEEPER_VERSION:-v0.12.7}
Expand Down Expand Up @@ -98,12 +98,12 @@ if [ ${IP} = "localhost" ]; then
export SECRET_STORE_URL=http://secret-store:12001
export SIGNING_NODE_URL=http://secret-store-signing-node:8545
export AQUARIUS_URI=http://aquarius:5000
export FAUCET_URL=http://localhost:3001
export FAUCET_URL=http://faucet:3001
export COMMONS_SERVER_URL=http://localhost:4000
export COMMONS_CLIENT_URL=http://localhost:3000
export COMMONS_KEEPER_RPC_HOST=http://localhost:8545
export COMMONS_SECRET_STORE_URL=http://localhost:12001
export BRIZO_URL=http://localhost:8030
export BRIZO_URL=http://brizo:8030
else
export SECRET_STORE_URL=http://${IP}:12001
export SIGNING_NODE_URL=http://${IP}:8545
Expand Down