Skip to content

Instantly share code, notes, and snippets.

@codeaholicguy
Last active August 30, 2018 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeaholicguy/ab60f4f1ece01d7dcde1238b9109fb77 to your computer and use it in GitHub Desktop.
Save codeaholicguy/ab60f4f1ece01d7dcde1238b9109fb77 to your computer and use it in GitHub Desktop.
version: "3"
services:
app:
build: .
ports:
- "3000:3000"
environment:
- MONGO_URL=mongodb://mongo:27017
depends_on:
- mongo
mongo:
image: mongo
ports:
- "27017:27017"
volumes:
- mongo_data:/data/db
volumes:
mongo_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment