Created
April 8, 2019 15:58
-
-
Save saikumar-everest/cd3b25b276731348665fd61f56b17da0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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