Skip to content

Instantly share code, notes, and snippets.

@saikumar-everest
Created April 8, 2019 15:58
Show Gist options
  • Save saikumar-everest/cd3b25b276731348665fd61f56b17da0 to your computer and use it in GitHub Desktop.
Save saikumar-everest/cd3b25b276731348665fd61f56b17da0 to your computer and use it in GitHub Desktop.
version: "3"
services:
webapp:
container_name: videofacilitator_webapp
image: theeverestguy/video-facilitator
restart: always
ports:
- "3000:3000"
depends_on:
- mongo
env_file:
- .env.local
- .env
mongo:
container_name: videofacilitator_mongo
image: mongo:4.0.8
volumes:
- ./data:/data/db
ports:
- "27017:27017"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment