mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Merge pull request #21 from allnil/fix/fix-devenv-docker-compose
FIX: fix docker compose so example tests successfully pass
This commit is contained in:
commit
cc6ed53edd
1 changed files with 19 additions and 0 deletions
|
|
@ -18,6 +18,9 @@ services:
|
||||||
- --keystore=/keystore/keystore
|
- --keystore=/keystore/keystore
|
||||||
- --unlock=0xB5fEAfbDD752ad52Afb7e1bD2E40432A485bBB7F
|
- --unlock=0xB5fEAfbDD752ad52Afb7e1bD2E40432A485bBB7F
|
||||||
- --password=/keystore/password.txt
|
- --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:
|
depends_on:
|
||||||
- suave-enabled-chain
|
- suave-enabled-chain
|
||||||
volumes:
|
volumes:
|
||||||
|
|
@ -25,12 +28,28 @@ services:
|
||||||
ports:
|
ports:
|
||||||
- 8545:8545
|
- 8545:8545
|
||||||
- 8546:8546
|
- 8546:8546
|
||||||
|
networks:
|
||||||
|
- suave-net
|
||||||
suave-enabled-chain:
|
suave-enabled-chain:
|
||||||
build: ../..
|
build: ../..
|
||||||
command:
|
command:
|
||||||
- --dev
|
- --dev
|
||||||
- --dev.gaslimit=30000000
|
- --dev.gaslimit=30000000
|
||||||
- --http
|
- --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
|
- --ws
|
||||||
ports:
|
ports:
|
||||||
- 8555:8545
|
- 8555:8545
|
||||||
|
volumes:
|
||||||
|
- ./suave-ex-node:/keystore
|
||||||
|
networks:
|
||||||
|
- suave-net
|
||||||
|
networks:
|
||||||
|
suave-net:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue