From cd26ab17c994041fd320f3be22791d66a69ad175 Mon Sep 17 00:00:00 2001 From: Dzmitry Lahunouski Date: Thu, 2 May 2024 22:04:33 +0100 Subject: [PATCH] fmt docker-compose.yml --- docker-compose.yml | 53 +++++++++++++++++----------------------------- 1 file changed, 20 insertions(+), 33 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 9a4f452..fe7a86c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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 @@ -67,7 +54,7 @@ services: volumes: - l2_execution_engine_data:/data/taiko-geth - ./script:/script - entrypoint: + entrypoint: | - /bin/sh - -c - "/script/start-driver.sh"