Skip to content

Commit

Permalink
Provide flags to the geth L1 docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Ethernal committed Apr 19, 2024
1 parent 00927ae commit 5f3a649
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,29 @@ services:
ports:
- '8545:8545'
- '8546:8546'
command:
- "--http"
- "--http.api"
- "admin,eth,debug,miner,net,txpool,personal,web3"
- "--http.addr"
- "0.0.0.0"
- "--http.corsdomain"
- "*"
- "--http.vhosts"
- "*"
- "--ws"
- "--ws.origins"
- "*"
- "--ws.addr"
- "0.0.0.0"
- "--dev"
- "--dev.period"
- "1"
- "--datadir"
- "/geth_data"
- "--syncmode"
- "full"
- "--rpc.allow-unprotected-txs"
networks:
- cdk-localnet

Expand Down

0 comments on commit 5f3a649

Please sign in to comment.