Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nishant-jain-94/docker-nodejs-mongodb
Sample repository to configure alerting
https://github.com/nishant-jain-94/docker-nodejs-mongodb
Last synced: 4 days ago
JSON representation
Sample repository to configure alerting
- Host: GitHub
- URL: https://github.com/nishant-jain-94/docker-nodejs-mongodb
- Owner: nishant-jain-94
- Created: 2020-05-06T05:51:08.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T04:46:12.000Z (about 2 years ago)
- Last Synced: 2024-11-10T03:19:06.883Z (about 1 month ago)
- Language: JavaScript
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Node MongoDB Example
> Simple example of a dockerized Node/Mongo app
## Quick Start
```bash
# Run in Docker
docker-compose up
# use -d flag to run in background# Tear down
docker-compose down# To be able to edit files, add volume to compose file
volumes: ['./:/usr/src/app']# To re-build
docker-compose build
```