Skip to content

Instantly share code, notes, and snippets.

@djuanit0x
Created July 22, 2019 07:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djuanit0x/8ae3b5979874ae8bf5fcebd5f6c2a9b3 to your computer and use it in GitHub Desktop.
Save djuanit0x/8ae3b5979874ae8bf5fcebd5f6c2a9b3 to your computer and use it in GitHub Desktop.
provable-bitcoin-price
version: '3'
services:
ganache:
image: trufflesuite/ganache-cli:v6.1.0
command: ganache-cli -h 0.0.0.0
ports:
- "8545:8545"
bridge:
build:
context: .
dockerfile: dockerfile.bridge
image: bridge:starter
restart: on-failure
depends_on:
- ganache
truffle:
build:
context: .
dockerfile: dockerfile.truffle
image: provable:starter
environment:
- DEVELOPMENT_HOST=ganache
restart: on-failure
depends_on:
- ganache
- bridge
volumes:
- .:/app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment