update versions

This commit is contained in:
alexcos20 2020-10-27 04:13:59 -07:00
parent 10e3ebeaae
commit f0041b0fde
5 changed files with 7 additions and 7 deletions

View File

@ -61,7 +61,7 @@ The default versions are always a combination of component versions which are co
| Aquarius | Provider | Ganache | ocean-contracts | | 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`: You can override the Docker image tag used for a particular component by setting its associated environment variable before calling `start_ocean.sh`:

View File

@ -11,7 +11,7 @@ services:
discovery.type: "single-node" discovery.type: "single-node"
aquarius: aquarius:
image: oceanprotocol/aquarius:${AQUARIUS_VERSION:-stable} image: oceanprotocol/aquarius:${AQUARIUS_VERSION:-latest}
ports: ports:
- 5000:5000 - 5000:5000
networks: networks:

View File

@ -1,7 +1,7 @@
version: '3' version: '3'
services: services:
ocean-contracts: ocean-contracts:
image: oceanprotocol/ocean-contracts:$CONTRACTS_VERSION image: oceanprotocol/ocean-contracts:${CONTRACTS_VERSION:-latest}
networks: networks:
backend: backend:
ipv4_address: 172.15.0.14 ipv4_address: 172.15.0.14

View File

@ -1,7 +1,7 @@
version: '3' version: '3'
services: services:
provider: provider:
image: oceanprotocol/provider-py:$PROVIDER_VERSION image: oceanprotocol/provider-py:${PROVIDER_VERSION:-latest}
ports: ports:
- 8030:8030 - 8030:8030
networks: networks:

View File

@ -28,9 +28,9 @@ COMPOSE_DIR="${DIR}/compose-files"
# Default versions of Aquarius, Provider # Default versions of Aquarius, Provider
export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v3} export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v2.1.0}
export PROVIDER_VERSION=${PROVIDER_VERSION:-latest} export PROVIDER_VERSION=${PROVIDER_VERSION:-v0.4.0}
export CONTRACTS_VERSION=${CONTRACTS_VERSION:-v0.5.5} export CONTRACTS_VERSION=${CONTRACTS_VERSION:-v0.5.7}
export PROJECT_NAME="ocean" export PROJECT_NAME="ocean"
export FORCEPULL="false" export FORCEPULL="false"