Created
April 14, 2019 09:00
-
-
Save schadokar/1852d9d4e7056640c9342b3da01d3dc5 to your computer and use it in GitHub Desktop.
docker-ethereum docker-compose.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: "3" | |
| services: | |
| ganache: | |
| build: | |
| context: . | |
| dockerfile: Dockerfile.ganache | |
| ports: | |
| - "8545:8545" | |
| dapp: | |
| build: . | |
| ports: | |
| - "4000:4000" | |
| depends_on: | |
| - ganache | |
| react: | |
| build: ./client | |
| ports: | |
| - "3000:3000" | |
| depends_on: | |
| - dapp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment