Skip to content

Instantly share code, notes, and snippets.

@Qaaj
Last active May 4, 2019 07:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Qaaj/fc70c95af43ae5e2de4efd66feb90f60 to your computer and use it in GitHub Desktop.
Save Qaaj/fc70c95af43ae5e2de4efd66feb90f60 to your computer and use it in GitHub Desktop.
Docker compose file for live reload
version: '3'
services:
web:
build: .
command: npm run dev
ports:
- "3001:3001"
depends_on:
- geth
volumes:
- .:/app
- /app/node_modules
geth:
image: "makevoid/ethereum-geth-dev"
ports:
- 30303:30303
- 8545:8545
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment