https://github.com/sonicoder86/node-docker-workflow
Docker workflow for local development and deployment
https://github.com/sonicoder86/node-docker-workflow
Last synced: over 1 year ago
JSON representation
Docker workflow for local development and deployment
- Host: GitHub
- URL: https://github.com/sonicoder86/node-docker-workflow
- Owner: sonicoder86
- License: mit
- Created: 2020-01-25T10:23:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T21:56:32.000Z (over 3 years ago)
- Last Synced: 2025-01-06T00:44:25.645Z (over 1 year ago)
- Language: Makefile
- Homepage: https://dev.to/blacksonic/a-simple-node-js-docker-workflow-18dh
- Size: 105 KB
- Stars: 5
- Watchers: 2
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Node.js Development Workflow with Docker
The repository shows how to develop locally and deploy the application as a Docker image for production.
### Local development
```bash
docker-compose up -d
```
### Production bundling
```bash
docker build -t node-docker-workflow .
```