Files
bitminer/docker-compose.yml
Tommy Parnell 7af404cac7 it works
2017-01-13 12:46:41 -05:00

31 lines
328 B
YAML

version: "2"
services:
gen:
build: gen
ports:
- "8001:80"
hashr:
build: Hashr
ports:
- "8002:80"
ui:
build: ui
ports:
- "8000:80"
links:
- store
store:
build: store
ports:
- "8003:80"
worker:
build: worker
links:
- hashr
- gen
- store