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

https://github.com/naologic/bee11-dev-docker


https://github.com/naologic/bee11-dev-docker

naologic

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# Bee11 Nest

Docker image for Nest CLI to use as build container.

![Docker stats](https://dockeri.co/image/naologic/bee11-dev-docker)

Currently this image uses node 12 (npm 6) and node:lts-slim as base distribution.

## Example usage

To run the Nest CLI development server from docker you need to map the port.
For example use
```
cd MyDemo
docker run -u $(id -u) --rm -p 3010:3010 -v "$PWD":/app naologic/bee11-dev-docker npm run start:dev
```