diff --git a/launchers/silius/docker-compose.yml b/launchers/silius/docker-compose.yml index 31bcd6d..dac571e 100644 --- a/launchers/silius/docker-compose.yml +++ b/launchers/silius/docker-compose.yml @@ -3,7 +3,25 @@ version: '2' services: bundler: image: ghcr.io/vid201/silius:latest - command: --rpc-listen-address 0.0.0.0:3000 --eth-client-address http://geth-dev:8545 --mnemonic-file /root/${BUNDLER_ACCOUNT} --beneficiary 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 --gas-factor 600 --min-balance 1 --entry-points 0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789 --min-stake 1 --min-unstake-delay 0 --min-priority-fee-per-gas 0 --max-verification-gas 1500000 --rpc-api eth,debug + command: + - bundler + - --eth-client-address + - http://geth-dev:8545 + - --datadir + - data/silius + - --mnemonic-file + - /root/${BUNDLER_ACCOUNT} + - --beneficiary + - 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 + - --entry-points + - 0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789 + - --http + - --http.addr + - 0.0.0.0 + - --http.port + - "3000" + - --http.api + - eth,debug,web3 ports: [ '3000:3000' ] volumes: - ./keys:/root @@ -18,4 +36,4 @@ services: geth-dev: build: geth-dev - ports: [ '8545:8545' ] \ No newline at end of file + ports: [ '8545:8545' ]