Skip to content

Instantly share code, notes, and snippets.

@codeaholicguy
Created August 30, 2018 08:15
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/4176a9bac5b1bbbe4157b63f693ab911 to your computer and use it in GitHub Desktop.
Save codeaholicguy/4176a9bac5b1bbbe4157b63f693ab911 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"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment