Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

silius: update args #29

Merged
merged 3 commits into from
Sep 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions launchers/silius/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -18,4 +36,4 @@ services:

geth-dev:
build: geth-dev
ports: [ '8545:8545' ]
ports: [ '8545:8545' ]
Loading