aave-protocol-v2/docker-compose.yml
2020-06-10 12:31:08 +02:00

21 lines
436 B
YAML

version: "3.5"
services:
contracts-env:
build:
context: ./
working_dir: /src
command: npm run run-env
volumes:
- ./:/src
ganache:
image: trufflesuite/ganache-cli:latest
ports:
- "8545:8545"
command: [
"ganache-cli",
"--gasLimit", "10000000",
"--mnemonic", "frame post antenna before valid claw crunch clap travel buyer inch act",
"--hardfork", "istanbul"
]