aave-protocol-v2/docker-compose.yml

21 lines
443 B
YAML

version: "3.5"
services:
contracts-env:
build:
context: ./
working_dir: /src
command: npm run run-env
depends_on:
- ganache
volumes:
- ./:/src
ganache:
image: trufflesuite/ganache-cli:latest
command: [
"ganache-cli",
"--gasLimit", "10000000",
"--mnemonic", "fox sight canyon orphan hotel grow hedgehog build bless august weather swarm",
"--hardfork", "istanbul"
]