https://github.com/blackbass64/nodemon-docker
🐳 Node.js local development on docker container and nodemon
https://github.com/blackbass64/nodemon-docker
docker docker-compose express hacktoberfest nodejs nodemon
Last synced: about 1 year ago
JSON representation
🐳 Node.js local development on docker container and nodemon
- Host: GitHub
- URL: https://github.com/blackbass64/nodemon-docker
- Owner: blackbass64
- Created: 2020-03-25T17:52:23.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2022-12-13T18:35:49.000Z (over 3 years ago)
- Last Synced: 2025-04-23T19:16:33.479Z (about 1 year ago)
- Topics: docker, docker-compose, express, hacktoberfest, nodejs, nodemon
- Language: JavaScript
- Homepage:
- Size: 87.9 KB
- Stars: 9
- Watchers: 1
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🐳 Nodemon Docker
Node.js local development on docker container and nodemon
You don't need to install [Node.js](https://nodejs.org/) or [npm](https://www.npmjs.com/) on your machine to develop Node.js, just using only [Docker](https://www.docker.com/)
## Start developing on local machine
Before you begin, you need to make sure you have installed [Docker Desktop](https://www.docker.com/products/docker-desktop)
Start project, run
```bash
docker-compose up
```
In case if you want to use npm or Node.js commands.
```bash
docker-compose run --rm app
```
ex. `docker-compose run app npm install jest --save`
If you want to re-build the container please stop the current one and run the following command below.
```bash
docker-compose up --build
```