fixes to docker installation
This commit is contained in:
@@ -19,6 +19,4 @@ WORKDIR /build
|
|||||||
ADD package.json /build/package.json
|
ADD package.json /build/package.json
|
||||||
RUN npm install
|
RUN npm install
|
||||||
ADD . /build
|
ADD . /build
|
||||||
CMD PATH=$PATH:node_modules/.bin cake dist
|
CMD ./node_modules/gulp/bin/gulp.js serve
|
||||||
=======
|
|
||||||
CMD PATH=$PATH:node_modules/.bin cake dist
|
|
||||||
|
|||||||
@@ -46,9 +46,10 @@ To build swagger-ui using a docker container:
|
|||||||
|
|
||||||
```
|
```
|
||||||
docker build -t swagger-ui-builder .
|
docker build -t swagger-ui-builder .
|
||||||
docker run -v $PWD/dist:/build/dist swagger-ui-builder
|
docker run -p 127.0.0.1:8080:8080 swagger-ui-builder
|
||||||
```
|
```
|
||||||
|
|
||||||
|
This will start Swagger UI at `http://localhost:8080`.
|
||||||
### Use
|
### Use
|
||||||
Once you open the Swagger UI, it will load the [Swagger Petstore](http://petstore.swagger.wordnik.com/v2/swagger.json) service and show its APIs. You can enter your own server url and click explore to view the API.
|
Once you open the Swagger UI, it will load the [Swagger Petstore](http://petstore.swagger.wordnik.com/v2/swagger.json) service and show its APIs. You can enter your own server url and click explore to view the API.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user