Created
February 4, 2022 01:42
-
-
Save lynsei/fdd91154f0f0b78a55be8b95aef2596e to your computer and use it in GitHub Desktop.
[Mongo DB] #docker-compose #yml #simple #basic #starter
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: | |
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