Skip to content

Commit 157ae34

Browse files
authored
Merge branch 'main' into petera/handle-resourceexhaused-ingestion
2 parents 70a8358 + 08d369b commit 157ae34

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

docker-compose.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: '3'
2+
3+
services:
4+
flow-evm-gateway:
5+
image: us-west1-docker.pkg.dev/dl-flow-devex-production/development/flow-evm-gateway:${VERSION}
6+
ports:
7+
- "${DOCKER_HOST_PORT}:8545"
8+
- "${DOCKER_HOST_METRICS_PORT}:8080"
9+
command: >
10+
--access-node-grpc-host=${ACCESS_NODE_GRPC_HOST}
11+
--access-node-spork-hosts=${ACCESS_NODE_SPORK_HOSTS}
12+
--flow-network-id=${FLOW_NETWORK_ID}
13+
--init-cadence-height=${INIT_CADENCE_HEIGHT}
14+
--coinbase=${COINBASE}
15+
--coa-address=${COA_ADDRESS}
16+
--coa-key=${COA_KEY}
17+
--ws-enabled=true
18+
--gas-price=100
19+
--rate-limit=9999999
20+
--rpc-host=0.0.0.0
21+
--log-level=warn
22+
--tx-state-validation=local-index
23+
--database-dir=/data
24+
volumes:
25+
- ${DOCKER_HOST_MOUNT}:/data
26+
restart: unless-stopped

0 commit comments

Comments
 (0)