We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f559bbb commit b911d75Copy full SHA for b911d75
README.md
@@ -1,6 +1,14 @@
1
-# docker-bee11-dev
+# Bee11 Nest
2
3
-#### Run
+Docker image for Nest CLI to use as build container.
4
+
5
+Currently this image uses node 12 (npm 6) and node:lts-slim as base distribution.
6
7
+## Example usage
8
9
+To run the Nest CLI development server from docker you need to map the port.
10
+For example use
11
```
-docker -v "$PWD":/app
12
+cd MyDemo
13
+docker run -u $(id -u) --rm -p 3010:3010 -v "$PWD":/app naologic/bee11-dev-docker npm run start:dev
14
0 commit comments