aave-protocol-v2/docker-compose.yml

21 lines
434 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:next
ports:
- "8545:8545"
command: [
"ganache-cli",
"--gasLimit", "10000000",
"--mnemonic", "frame post antenna before valid claw crunch clap travel buyer inch act",
"--hardfork", "istanbul"
]