Skip to content

Instantly share code, notes, and snippets.

@lynsei
Created February 4, 2022 01:42
Show Gist options
  • Save lynsei/fdd91154f0f0b78a55be8b95aef2596e to your computer and use it in GitHub Desktop.
Save lynsei/fdd91154f0f0b78a55be8b95aef2596e to your computer and use it in GitHub Desktop.
[Mongo DB] #docker-compose #yml #simple #basic #starter
version: '3'
services:
mongo:
image: mongo:3.6
web:
build: .
ports:
- "8080:8080"
environment:
- MONGODB_URI=mongodb://mongo:27017/test
links:
- mongo
depends_on:
- mongo
volumes:
- .:/starter
- /starter/node_modules
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment