aave-protocol-v2/docker-compose.yml

21 lines
443 B
YAML
Raw Normal View History

2020-05-29 14:55:31 +00:00
version: "3.5"
services:
contracts-env:
build:
context: ./
working_dir: /src
command: npm run run-env
2020-06-10 10:46:18 +00:00
depends_on:
- ganache
2020-05-29 14:55:31 +00:00
volumes:
- ./:/src
ganache:
2020-06-10 10:31:08 +00:00
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"
]