Skip to content

Instantly share code, notes, and snippets.

@pranavrajs
Created April 28, 2016 17:50
Show Gist options
  • Save pranavrajs/189e5dba33439589bed20a7d9fc29fc7 to your computer and use it in GitHub Desktop.
Save pranavrajs/189e5dba33439589bed20a7d9fc29fc7 to your computer and use it in GitHub Desktop.
docker-sails-mongo
version: '2'
services:
web:
build: ./app/
volumes:
- ./app:/app
- /app/node_modules
ports:
- "1337:1337"
depends_on:
- mongo
mongo:
image: mongo
ports:
- "27017:27017"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment