Skip to content

Instantly share code, notes, and snippets.

@schadokar
Created April 14, 2019 09:00
Show Gist options
  • Select an option

  • Save schadokar/1852d9d4e7056640c9342b3da01d3dc5 to your computer and use it in GitHub Desktop.

Select an option

Save schadokar/1852d9d4e7056640c9342b3da01d3dc5 to your computer and use it in GitHub Desktop.
docker-ethereum docker-compose.yml
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