Skip to content

Commit

Permalink
fmt docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
killroy192 authored May 2, 2024
1 parent e84507a commit cd26ab1
Showing 1 changed file with 20 additions and 33 deletions.
53 changes: 20 additions & 33 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,38 +18,25 @@ services:
- "${PORT_L2_EXECUTION_ENGINE_WS}:8546"
- "${PORT_L2_EXECUTION_ENGINE_P2P}:30303"
- "${PORT_L2_EXECUTION_ENGINE_P2P}:30303/udp"
command:
- --taiko
- --networkid
- "${CHAIN_ID}"
- --gcmode
- archive
- --datadir
- /data/taiko-geth
- --metrics
- --metrics.expensive
- --metrics.addr
- "0.0.0.0"
- --bootnodes
- ${BOOT_NODES}
- --authrpc.addr
- "0.0.0.0"
- --authrpc.vhosts
- "*"
- --http
- --http.api
- debug,eth,net,web3,txpool,taiko
- --http.addr
- "0.0.0.0"
- --http.vhosts
- "*"
- --ws
- --ws.api
- debug,eth,net,web3,txpool,taiko
- --ws.addr
- "0.0.0.0"
- --ws.origins
- "*"
command: |
--taiko
--networkid "${CHAIN_ID}"
--gcmode archive
--datadir /data/taiko-geth
--metrics
--metrics.expensive
--metrics.addr "0.0.0.0"
--bootnodes ${BOOT_NODES}
--authrpc.addr "0.0.0.0"
--authrpc.vhosts "*"
--http
--http.api debug,eth,net,web3,txpool,taiko
--http.addr "0.0.0.0"
--http.vhosts "*"
--ws
--ws.api debug,eth,net,web3,txpool,taiko
--ws.addr "0.0.0.0"
--ws.origins "*"
<<: *logging
profiles:
- l2_execution_engine
Expand All @@ -67,7 +54,7 @@ services:
volumes:
- l2_execution_engine_data:/data/taiko-geth
- ./script:/script
entrypoint:
entrypoint: |
- /bin/sh
- -c
- "/script/start-driver.sh"
Expand Down

0 comments on commit cd26ab1

Please sign in to comment.