Skip to content

Instantly share code, notes, and snippets.

@dimuthu
Last active February 10, 2020 10:31
Show Gist options
  • Save dimuthu/0693d0408dc8c25466d2019350a3a79a to your computer and use it in GitHub Desktop.
Save dimuthu/0693d0408dc8c25466d2019350a3a79a to your computer and use it in GitHub Desktop.
Docker compose file for node and mongodb
version: "3"
services:
app:
container_name: app
restart: always
build: .
volumes:
- ./:/app
- /app/node_modules
ports:
- "4000:8080"
links:
- mongo
mongo:
container_name: mongo
image: mongo:4.2
ports:
- "27017:27017"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment