thedevsaddam / docgen

Transform your postman collection to HTML/Markdown documentation
MIT License
967 stars 134 forks source link

Dockerfile added #51

Closed vanWezel closed 3 years ago

vanWezel commented 3 years ago

Dockerfile added so you don't have to install it locally.

1. build the image

docker build --no-cache -t docgen .

2. add this to your bash profile

alias docgen="docker run --rm -i -t -v $(pwd):/export docgen:latest" or paste in terminal docker run --rm -i -t -v $(pwd):/export docgen:latest

3. how to use

Go to the folder with the exported postman_collection.json (must be exact this name).

thedevsaddam commented 3 years ago

Thank you!