44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
|
services:
|
||
|
ipld-eth-server:
|
||
|
restart: unless-stopped
|
||
|
depends_on:
|
||
|
ipld-eth-db:
|
||
|
condition: service_healthy
|
||
|
image: cerc/ipld-eth-server:local
|
||
|
environment:
|
||
|
SERVER_HTTP_PATH: 0.0.0.0:8081
|
||
|
SERVER_GRAPHQL: "true"
|
||
|
SERVER_GRAPHQLPATH: 0.0.0.0:8082
|
||
|
ETH_CHAIN_CONFIG: "/opt/config/chain.json"
|
||
|
DATABASE_NAME: cerc_testing
|
||
|
DATABASE_HOSTNAME: ipld-eth-db
|
||
|
DATABASE_PORT: 5432
|
||
|
DATABASE_USER: "vdbm"
|
||
|
DATABASE_PASSWORD: "password"
|
||
|
ETH_FORWARD_ETH_CALLS: "false"
|
||
|
ETH_FORWARD_GET_STORAGE_AT: "false"
|
||
|
ETH_PROXY_ON_ERROR: "false"
|
||
|
METRICS: "true"
|
||
|
PROM_HTTP: "true"
|
||
|
PROM_HTTP_ADDR: "0.0.0.0"
|
||
|
PROM_HTTP_PORT: "8090"
|
||
|
LOG_LEVEL: "debug"
|
||
|
CERC_REMOTE_DEBUG: ${CERC_REMOTE_DEBUG:-true}
|
||
|
volumes:
|
||
|
- fixturenet_plugeth_bootnode_geth_config:/opt/config
|
||
|
ports:
|
||
|
- "8081"
|
||
|
- "8082"
|
||
|
- "8090"
|
||
|
- "40000"
|
||
|
healthcheck:
|
||
|
test: ["CMD", "nc", "-v", "localhost", "8081"]
|
||
|
interval: 20s
|
||
|
timeout: 5s
|
||
|
retries: 15
|
||
|
start_period: 5s
|
||
|
|
||
|
volumes:
|
||
|
fixturenet_plugeth_bootnode_geth_config:
|
||
|
|