From f0041b0fdee6a902e40c50caaabe8b4f082a3ba5 Mon Sep 17 00:00:00 2001 From: alexcos20 Date: Tue, 27 Oct 2020 04:13:59 -0700 Subject: [PATCH] update versions --- README.md | 2 +- compose-files/aquarius.yml | 2 +- compose-files/ocean_contracts.yml | 2 +- compose-files/provider.yml | 2 +- start_ocean.sh | 6 +++--- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 075f6f1..e2bec14 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ The default versions are always a combination of component versions which are co | Aquarius | Provider | Ganache | ocean-contracts | | -------- | -------- | -------- | --------------- | -| `vx.x.x` | `vx.x.x` | `latest` | `test` +| `v2.1.0` | `v0.4.0` | `latest` | `V0.5.7` You can override the Docker image tag used for a particular component by setting its associated environment variable before calling `start_ocean.sh`: diff --git a/compose-files/aquarius.yml b/compose-files/aquarius.yml index 705dd74..36089b1 100644 --- a/compose-files/aquarius.yml +++ b/compose-files/aquarius.yml @@ -11,7 +11,7 @@ services: discovery.type: "single-node" aquarius: - image: oceanprotocol/aquarius:${AQUARIUS_VERSION:-stable} + image: oceanprotocol/aquarius:${AQUARIUS_VERSION:-latest} ports: - 5000:5000 networks: diff --git a/compose-files/ocean_contracts.yml b/compose-files/ocean_contracts.yml index 1db5215..52e8580 100644 --- a/compose-files/ocean_contracts.yml +++ b/compose-files/ocean_contracts.yml @@ -1,7 +1,7 @@ version: '3' services: ocean-contracts: - image: oceanprotocol/ocean-contracts:$CONTRACTS_VERSION + image: oceanprotocol/ocean-contracts:${CONTRACTS_VERSION:-latest} networks: backend: ipv4_address: 172.15.0.14 diff --git a/compose-files/provider.yml b/compose-files/provider.yml index d60b7fc..61445f5 100644 --- a/compose-files/provider.yml +++ b/compose-files/provider.yml @@ -1,7 +1,7 @@ version: '3' services: provider: - image: oceanprotocol/provider-py:$PROVIDER_VERSION + image: oceanprotocol/provider-py:${PROVIDER_VERSION:-latest} ports: - 8030:8030 networks: diff --git a/start_ocean.sh b/start_ocean.sh index 9cea66c..bbb7de4 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -28,9 +28,9 @@ COMPOSE_DIR="${DIR}/compose-files" # Default versions of Aquarius, Provider -export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v3} -export PROVIDER_VERSION=${PROVIDER_VERSION:-latest} -export CONTRACTS_VERSION=${CONTRACTS_VERSION:-v0.5.5} +export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v2.1.0} +export PROVIDER_VERSION=${PROVIDER_VERSION:-v0.4.0} +export CONTRACTS_VERSION=${CONTRACTS_VERSION:-v0.5.7} export PROJECT_NAME="ocean" export FORCEPULL="false"