Skip to content

Commit

Permalink
Merge pull request #21 from allnil/fix/fix-devenv-docker-compose
Browse files Browse the repository at this point in the history
FIX: fix docker compose so example tests successfully pass
  • Loading branch information
ferranbt authored Mar 14, 2024
2 parents cebeb5d + f52c111 commit cc6ed53
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions suave/devenv/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,38 @@ 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:
- ./suave-ex-node:/keystore
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:

0 comments on commit cc6ed53

Please sign in to comment.