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

fix(deps): fix/renovate/graphprotocol graph node 0.33.3 #13185

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 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
6 changes: 3 additions & 3 deletions docker/docker-compose.integration.yml
Expand Up @@ -44,8 +44,8 @@ services:
'/opt/startup.sh',
]
volumes:
- ./development/subgraph/startup.sh:/opt/startup.sh
- ./development/subgraph/networks.json:/home/unlock/subgraph/networks.json
- ./development/eth-node/startup.sh:/opt/startup.sh
- ./development/eth-node/networks.json:/home/unlock/subgraph/networks.json
- ./development/wait-for-it/wait-for-it.sh:/opt/wait-for-it.sh
depends_on:
- graph-node
Expand All @@ -60,7 +60,7 @@ services:
BUILD_DIR: tests
env_file: test.env
volumes:
- ./development/subgraph/networks.json:/home/unlock/networks.json
- ./development/eth-node/networks.json:/home/unlock/networks.json
depends_on:
- graph-node
- eth-node
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
@@ -1,7 +1,7 @@
version: '3.2'
services:
graph-node:
image: graphprotocol/graph-node:v0.29.0
image: graphprotocol/graph-node:v0.33.0
ports:
- '8000:8000'
- '8001:8001'
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-stack-dockerized.sh
Expand Up @@ -21,7 +21,7 @@ docker-compose $COMPOSE_CONFIG up -d postgres ipfs graph-node eth-node
docker-compose $COMPOSE_CONFIG exec -T eth-node yarn provision --network docker

# Make the correct subgraph config
docker-compose $COMPOSE_CONFIG exec -T eth-node cat networks.json > $BASE_DOCKER_FOLDER/development/subgraph/networks.json
docker-compose $COMPOSE_CONFIG exec -T eth-node cat networks.json > $BASE_DOCKER_FOLDER/development/eth-node/networks.json

# show subgraph networks config (for debug purposes)
docker-compose $COMPOSE_CONFIG exec -T eth-node cat networks.json
Expand Down