Skip to content

Instantly share code, notes, and snippets.

@fundon
Created October 23, 2015 06:40
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 fundon/c75d7d5225085ca35bd0 to your computer and use it in GitHub Desktop.
Save fundon/c75d7d5225085ca35bd0 to your computer and use it in GitHub Desktop.
Using Docker Compose in Node.js Project
app:
 build: .
 volumes:
 — .:/src
 links:
 — mongo
 — redis
 ports:
 — 3000:3000
redis:
 image: redis
mongo:
 image: mongo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment