Skip to content

Commit

Permalink
Added docker-compose file (#1030)
Browse files Browse the repository at this point in the history
  • Loading branch information
yogeshVU authored and brollb committed Jul 25, 2017
1 parent 66b794c commit f9551b1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
services:
mongo:
image: mongo
volumes:
- "$HOME/.deepforge/data:/data/db"
server:
environment:
- "MONGO_URI=mongodb://mongo:27017/deepforge"
image: deepforge/server
ports:
- "8888:8888"
volumes:
- "$HOME/.deepforge/blob:/data/blob"
worker:
command: "http://server:8888"
image: deepforge/worker
version: "2"

0 comments on commit f9551b1

Please sign in to comment.