This commit is contained in:
2022-08-12 07:42:46 -06:00
parent 3c6e8075b3
commit 369ff671d5
7 changed files with 4 additions and 79 deletions
@@ -1,25 +1,2 @@
# Build vulcanize/eth-statediff-fill-service
docker build -t vulcanize/eth-statediff-fill-service:local ${vulcanize_repo_base_dir}/eth-statediff-fill-service
#version: "3.2"
#services:
# eth-statediff-fill-service:
# restart: unless-stopped
# depends_on:
# ipld-eth-db:
# condition: service_healthy
# build:
# context: ${vulcanize_eth_statediff_fill_service}
# dockerfile: ./Dockerfile
# environment:
# ETH_SERVER_HTTPPATH: 0.0.0.0:8085
# VDB_COMMAND: "serve"
# DATABASE_NAME: "vulcanize_testing"
# DATABASE_HOSTNAME: "ipld-eth-db"
# DATABASE_PORT: 5432
# DATABASE_USER: "vdbm"
# DATABASE_PASSWORD: "password"
# ETH_HTTP_PATH: $eth_http_path
# WATCHED_ADDRESS_GAP_FILLER_INTERVAL: $watched_address_gap_filler_interval
# ports:
# - "127.0.0.1:8085:8085"
@@ -1,21 +1,2 @@
# Build vulcanize/ipld-eth-beacon-db
docker build -t vulcanize/ipld-eth-beacon-db:local ${vulcanize_repo_base_dir}/ipld-eth-beacon-db
#version: "3.2"
#services:
# ipld-eth-beacon-db:
# restart: always
# build:
# context: ${vulcanize_ipld_eth_beacon_db}/
# environment:
# POSTGRES_USER: vdbm
# POSTGRES_DB: vulcanize_testing
# POSTGRES_PASSWORD: password
# volumes:
# - vdb_db_eth-beacon_db:/var/lib/postgresql/data
# ports:
# - "127.0.0.1:8076:5432"
# command: ["postgres", "-c", "log_statement=all"]
#
#volumes:
# vdb_db_eth-beacon_db:
@@ -5,23 +5,3 @@
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
docker build -t vulcanize/lighthouse:local ${SCRIPT_DIR}
#version: "3.2"
#services:
# lighthouse:
# restart: always
# build:
# context: ../../
# dockerfile: ./docker/latest/lighthouse.Dockerfile
# environment:
# - NETWORK=mainnet
# volumes:
# - lighthouse_db:/root/.lighthouse
# ports:
# - 127.0.0.1:5052:5052
# - 9000:9000/udp
# - 9000:9000/tcp
# command: ["tail", "-f", "/dev/null"]
#
#volumes:
# lighthouse_db:
@@ -1,17 +1,2 @@
# Build vulcanize/test-contract
docker build -t vulcanize/test-contract:local ${vulcanize_repo_base_dir}/ipld-eth-db-validator/test/contract
#version: "3.2"
#services:
# contract:
# depends_on:
# go-ethereum:
# condition: service_healthy
# build:
# context: ${vulcanize_test_contract}
# args:
# ETH_ADDR: "http://go-ethereum:8545"
# environment:
# ETH_ADDR: "http://go-ethereum:8545"
# ports:
# - "127.0.0.1:3000:3000"