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 d06b772 commit 9e18556Copy full SHA for 9e18556
README.md
@@ -2,21 +2,12 @@
2
3
> My cool Nuxt.js project
4
5
-## Build Setup
+## make docker image
6
7
-``` bash
8
-# install dependencies
9
-$ yarn install
10
-
11
-# serve with hot reload at localhost:3000
12
-$ yarn run dev
13
14
-# build for production and launch server
15
-$ yarn run build
16
-$ yarn start
17
18
-# generate static project
19
-$ yarn run generate
+```
+docker build --tag <name>:<version> .
20
```
21
22
-For detailed explanation on how things work, checkout [Nuxt.js docs](https://nuxtjs.org).
+## run docker container
+
+docker run --name <container-name> -p 3000:3000 <image-name>:<version>
0 commit comments