This commit is contained in:
2022-08-23 16:02:38 -06:00
parent b5df703f60
commit 8aae9b8f84
25 changed files with 65 additions and 65 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ services:
depends_on:
go-ethereum:
condition: service_healthy
image: vulcanize/test-contract:local
image: cerc/test-contract:local
environment:
ETH_ADDR: "http://go-ethereum:8545"
ports:
+3 -3
View File
@@ -6,10 +6,10 @@ services:
depends_on:
ipld-eth-db:
condition: service_healthy
image: vulcanize/ipld-eth-db:local
image: cerc/ipld-eth-db:local
environment:
DATABASE_USER: "vdbm"
DATABASE_NAME: "vulcanize_testing"
DATABASE_NAME: "cerc_testing"
DATABASE_PASSWORD: "password"
DATABASE_HOSTNAME: "ipld-eth-db"
DATABASE_PORT: 5432
@@ -20,7 +20,7 @@ services:
command: ["postgres", "-c", "log_statement=all"]
environment:
POSTGRES_USER: "vdbm"
POSTGRES_DB: "vulcanize_testing"
POSTGRES_DB: "cerc_testing"
POSTGRES_PASSWORD: "password"
healthcheck:
test: ["CMD", "nc", "-v", "localhost", "5432"]
+3 -3
View File
@@ -1,14 +1,14 @@
# TODO: figure out if this is needed -- it doesn't seem to make sense in the context of the
# current version of vulcanize/ipld-eth-db/Dockerfile, which is only the migrations code, not the DB itself
# current version of cerc/ipld-eth-db/Dockerfile, which is only the migrations code, not the DB itself
# The sibling component docker-compose-db-sharding.yml looks more plausible
version: "3.2"
services:
ipld-eth-db:
restart: always
image: vulcanize/ipld-eth-db:local
image: cerc/ipld-eth-db:local
environment:
POSTGRES_USER: "vdbm"
POSTGRES_DB: "vulcanize_testing"
POSTGRES_DB: "cerc_testing"
POSTGRES_PASSWORD: "password"
healthcheck:
test: ["CMD", "nc", "-v", "localhost", "5432"]
@@ -5,11 +5,11 @@ services:
depends_on:
ipld-eth-db:
condition: service_healthy
image: vulcanize/eth-statediff-fill-service:local
image: cerc/eth-statediff-fill-service:local
environment:
ETH_SERVER_HTTPPATH: 0.0.0.0:8085
VDB_COMMAND: "serve"
DATABASE_NAME: "vulcanize_testing"
DATABASE_NAME: "cerc_testing"
DATABASE_HOSTNAME: "ipld-eth-db"
DATABASE_PORT: 5432
DATABASE_USER: "vdbm"
@@ -6,7 +6,7 @@ services:
depends_on:
ipld-eth-db:
condition: service_healthy
image: vulcanize/go-ethereum-foundry:local
image: cerc/go-ethereum-foundry:local
healthcheck:
test: ["CMD", "nc", "-v", "localhost", "8545"]
interval: 30s
@@ -14,7 +14,7 @@ services:
retries: 10
environment:
DB_USER: vdbm
DB_NAME: vulcanize_testing
DB_NAME: cerc_testing
DB_HOST: ipld-eth-db
DB_PORT: 5432
DB_PASSWORD: password
@@ -2,10 +2,10 @@ version: "3.2"
services:
ipld-eth-beacon-db:
restart: always
image: vulcanize/ipld-eth-beacon-db:local
image: cerc/ipld-eth-beacon-db:local
environment:
POSTGRES_USER: vdbm
POSTGRES_DB: vulcanize_testing
POSTGRES_DB: cerc_testing
POSTGRES_PASSWORD: password
volumes:
- vdb_db_eth-beacon_db:/var/lib/postgresql/data
@@ -5,7 +5,7 @@ services:
depends_on:
- ipld-eth-beacon-db
- lighthouse
image: vulcanize/ipld-eth-beacon-indexer:local
image: cerc/ipld-eth-beacon-indexer:local
volumes:
- type: bind
source: ${eth_beacon_config_file}
+4 -4
View File
@@ -5,7 +5,7 @@ services:
depends_on:
ipld-eth-db:
condition: service_healthy
image: vulcanize/ipld-eth-server:local
image: cerc/ipld-eth-server:local
environment:
IPLD_SERVER_GRAPHQL: "true"
IPLD_POSTGRAPHILEPATH: http://graphql:5000
@@ -14,7 +14,7 @@ services:
ETH_SERVER_GRAPHQLPATH: 0.0.0.0:8082
VDB_COMMAND: "serve"
ETH_CHAIN_CONFIG: "/tmp/chain.json"
DATABASE_NAME: vulcanize_testing
DATABASE_NAME: cerc_testing
DATABASE_HOSTNAME: ipld-eth-db
DATABASE_PORT: 5432
DATABASE_USER: "vdbm"
@@ -36,11 +36,11 @@ services:
depends_on:
ipld-eth-db:
condition: service_healthy
image: vulcanize/postgraphile:v1.0.1
image: cerc/postgraphile:v1.0.1
environment:
PG_HOST: ipld-eth-db
PG_PORT: 5432
PG_DATABASE: vulcanize_testing
PG_DATABASE: cerc_testing
PG_USER: vdbm
PG_PASSWORD: password
SCHEMA: public,eth
+1 -1
View File
@@ -2,7 +2,7 @@ version: "3.2"
services:
lighthouse:
restart: always
image: vulcanize/lighthouse:local
image: cerc/lighthouse:local
environment:
- NETWORK=mainnet
volumes:
@@ -7,7 +7,7 @@ services:
user: "987"
image: prom/prometheus
volumes:
- ${vulcanize_ops}/metrics/etc:/etc/prometheus
- ${cerc_ops}/metrics/etc:/etc/prometheus
- ./prometheus-data:/prometheus
ports:
- "127.0.0.1:9090:9090"