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:
|
2020-06-10 08:31:33 +00:00
|
|
|
- ./:/src
|
|
|
|
|
|
|
|
ganache:
|
2020-06-10 10:31:08 +00:00
|
|
|
image: trufflesuite/ganache-cli:latest
|
2020-06-10 08:31:33 +00:00
|
|
|
command: [
|
|
|
|
"ganache-cli",
|
|
|
|
"--gasLimit", "10000000",
|
2020-06-10 11:46:42 +00:00
|
|
|
"--mnemonic", "fox sight canyon orphan hotel grow hedgehog build bless august weather swarm",
|
2020-06-10 08:31:33 +00:00
|
|
|
"--hardfork", "istanbul"
|
|
|
|
]
|