An open API service indexing awesome lists of open source software.

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

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 .
```