Added dependencies to compose file. Fixes #1031 (#1032)

* WIP #1031 added container dependency info

* WIP #1031 updated quickstart
Esse commit está contido em:
Brian Broll
2017-08-09 11:41:46 +10:00
commit de GitHub
commit ce5f890cec
2 arquivos alterados com 8 adições e 8 exclusões
+4 -8
Ver Arquivo
@@ -21,17 +21,13 @@ Additional features include:
- Facilitates defining custom layers - Facilitates defining custom layers
## Quick Start ## Quick Start
Deepforge requires NodeJS v6 (we recommend installing NodeJS using [nvm](https://github.com/creationix/nvm)). After installing NodeJS using nvm, simply run The easiest way to start deepforge is using [docker-compose](https://docs.docker.com/compose/). Using docker-compose, deepforge can be started with
``` ```
npm install -g deepforge wget https://raw.githubusercontent.com/deepforge-dev/deepforge/master/docker-compose.yml
docker-compose up
``` ```
Finally, start deepforge with `deepforge start`and navigate to [http://localhost:8888](http://localhost:8888) to start using DeepForge! For more, detailed instructions, check out the [wiki](https://github.com/dfst/deepforge/wiki/Installation-Guide). Finally, navigate to [http://localhost:8888](http://localhost:8888) to start using DeepForge! For more detailed instructions and other installation options, check out the [docs](http://deepforge.readthedocs.io/en/latest/deployment/overview.html).
**Note**: running deepforge w/ `deepforge start` will also require [MongoDB](https://www.mongodb.com/download-center?jmp=nav#community) to be installed locally.
Also, be sure to check out the other available features of the `deepforge` cli; it can be used to update, manage your torch installation, uninstall deepforge and run individual components!
## Additional Resources ## Additional Resources
- [Intro to DeepForge Slides](https://docs.google.com/presentation/d/10_y5O3gHXSATfjHVLJg7dOdrz-tAXNWjlxhJ5SlA0ic/edit?usp=sharing) - [Intro to DeepForge Slides](https://docs.google.com/presentation/d/10_y5O3gHXSATfjHVLJg7dOdrz-tAXNWjlxhJ5SlA0ic/edit?usp=sharing)
+4
Ver Arquivo
@@ -12,7 +12,11 @@ services:
- "8888:8888" - "8888:8888"
volumes: volumes:
- "$HOME/.deepforge/blob:/data/blob" - "$HOME/.deepforge/blob:/data/blob"
depends_on:
- mongo
worker: worker:
command: "http://server:8888" command: "http://server:8888"
image: deepforge/worker image: deepforge/worker
depends_on:
- server
version: "2" version: "2"