Skip to content

Commit 9db8c59

Browse files
committed
Update ipld-eth-db build configuration in docker-compose file
1 parent 8551aae commit 9db8c59

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

docker-compose.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@ version: "3.2"
33
services:
44
ipld-eth-db:
55
restart: always
6-
image: vulcanize/ipld-eth-db:v3.2.0
6+
# image: vulcanize/ipld-eth-db:v3.2.0
7+
build:
8+
context: https://github.com/vulcanize/ipld-eth-db.git#sharding
9+
dockerfile: Dockerfile
710
environment:
811
POSTGRES_USER: "vdbm"
9-
POSTGRES_DB: "vulcanize_testing_v3"
12+
POSTGRES_DB: "vulcanize_testing_v4"
1013
POSTGRES_PASSWORD: "password"
1114
volumes:
1215
- geth_node:/var/lib/postgresql/data

statediff/indexer/database/sql/postgres/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ var DefaultConfig = Config{
5050
Hostname: "localhost",
5151
Port: 5432,
5252
DatabaseName: "vulcanize_testing_v4",
53-
Username: "postgres",
54-
Password: "",
53+
Username: "vdbm",
54+
Password: "password",
5555
}
5656

5757
// Config holds params for a Postgres db

0 commit comments

Comments
 (0)