Merge pull request #389 from oceanprotocol/feature/bump_contracts_and_subgraph

Feature/bump contracts and subgraph
This commit is contained in:
Alex Coseru 2023-11-29 15:53:24 +02:00 committed by GitHub
commit b58efbda32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
version: '3'
services:
graph-node:
image: graphprotocol/graph-node:v0.28.2
image: graphprotocol/graph-node:${GRAPH_NODE_VERSION:-latest}
ports:
- '9000:8000'
- '9001:8001'
@ -35,6 +35,7 @@ services:
POSTGRES_USER: graph-node
POSTGRES_PASSWORD: let-me-in
POSTGRES_DB: graph-node
POSTGRES_INITDB_ARGS: '--encoding=UTF-8 --lc-collate=C --lc-ctype=C'
volumes:
- graphpgsql:/var/lib/postgresql/data
subgraph:

View File

@ -32,8 +32,9 @@ export AQUARIUS_VERSION=${AQUARIUS_VERSION:-v5.1.5}
export ELASTICSEARCH_VERSION=${ELASTICSEARCH_VERSION:-8.5.1}
export PROVIDER_VERSION=${PROVIDER_VERSION:-v2.1.3}
export SUBGRAPH_VERSION=${SUBGRAPH_VERSION:-v4.0.2}
export CONTRACTS_VERSION=${CONTRACTS_VERSION:-v2.0.2}
export CONTRACTS_VERSION=${CONTRACTS_VERSION:-v2.0.3}
export RBAC_VERSION=${RBAC_VERSION:-next}
export GRAPH_NODE_VERSION=${GRAPH_NODE_VERSION:-v0.33.0}
export OPERATOR_SERVICE_VERSION=${OPERATOR_SERVICE_VERSION:-oceanprotocol/operator-service:v4main}
export OPERATOR_ENGINE_VERSION=${OPERATOR_ENGINE_VERSION:-oceanprotocol/operator-engine:v4main}