mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
fix docker compose so example tests successfully pass
This commit is contained in:
parent
d20d30c753
commit
f52c111064
1 changed files with 19 additions and 0 deletions
|
|
@ -18,6 +18,9 @@ services:
|
|||
- --keystore=/keystore/keystore
|
||||
- --unlock=0xB5fEAfbDD752ad52Afb7e1bD2E40432A485bBB7F
|
||||
- --password=/keystore/password.txt
|
||||
- --suave.dev
|
||||
- --suave.eth.remote_endpoint=http://suave-enabled-chain:8545
|
||||
- --suave.eth.external-whitelist=172.17.0.1
|
||||
depends_on:
|
||||
- suave-enabled-chain
|
||||
volumes:
|
||||
|
|
@ -25,12 +28,28 @@ services:
|
|||
ports:
|
||||
- 8545:8545
|
||||
- 8546:8546
|
||||
networks:
|
||||
- suave-net
|
||||
suave-enabled-chain:
|
||||
build: ../..
|
||||
command:
|
||||
- --dev
|
||||
- --dev.gaslimit=30000000
|
||||
- --http
|
||||
- --http.addr=0.0.0.0
|
||||
- --http.vhosts=*
|
||||
- --http.corsdomain=*
|
||||
- --datadir=/data
|
||||
- --keystore=/keystore/keystore
|
||||
- --password=/keystore/password.txt
|
||||
- --unlock=0xB5fEAfbDD752ad52Afb7e1bD2E40432A485bBB7F
|
||||
- --allow-insecure-unlock
|
||||
- --ws
|
||||
ports:
|
||||
- 8555:8545
|
||||
volumes:
|
||||
- ./suave-ex-node:/keystore
|
||||
networks:
|
||||
- suave-net
|
||||
networks:
|
||||
suave-net:
|
||||
|
|
|
|||
Loading…
Reference in a new issue