Skip to content

Instantly share code, notes, and snippets.

@MikeMichel
Last active May 18, 2016 09:41
Show Gist options
  • Save MikeMichel/52e9114ce0c9bac4a8dc971d72bb59e3 to your computer and use it in GitHub Desktop.
Save MikeMichel/52e9114ce0c9bac4a8dc971d72bb59e3 to your computer and use it in GitHub Desktop.
version: '2'
services:
web:
image: mikemichel/hackathon-starter:0.1
ports:
- "80:3000"
depends_on:
- mongo
networks:
- all
environment:
MONGODB: "mongodb://mongo:27017/hackathon"
mongo:
image: mongo:3
command: mongod --smallfiles
volumes:
- /mnt/mongodb:/data/db
networks:
- all
networks:
all:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment