dozer47528 / api-blueprint-docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Api Blueprint Docker

Docker Stars Docker Pulls Image Size Image Layers

How to use?

docker run --name test -e "repository=https://github.com/dozer47528/api-blueprint-test.git" -p 80:80 -p 8080:8080 -p 3000:3000 -d dozer47528/api-blueprint-docker

Replace the https://github.com/dozer47528/api-blueprint-test.git with your own repository.

 

How change aglio parameter

Add this parameter like this:-e "aglio=--theme-template triple"

Full command like this:

docker run --name test -e "aglio=--theme-template triple" -e "repository=https://github.com/dozer47528/api-blueprint-test.git" -p 80:80 -p 8080:8080 -p 3000:3000 -d dozer47528/api-blueprint-docker

aglio document: https://github.com/danielgtaylor/aglio#executable

 

How to support private repositiry?

Create ssh keys in your host and add parameter like this:-v ~/.ssh:/root/.ssh

Full command like this:

docker run --name test -v ~/.ssh:/root/.ssh -e "repository=https://github.com/dozer47528/api-blueprint-test.git" -p 80:80 -p 8080:8080 -p 3000:3000 -d dozer47528/api-blueprint-docker

 

Ports explain:

  • 80 : document server
  • 3000 : mock server
  • 8080 : webhook server

 

How does it work?

When you first run or call the webhook:

  1. use aglio convert all file like *.apib to *.html.
  2. copy all the files (include origin html file in the repository) to nginx root.
  3. restart nginx (auto reload).
  4. restart drakov (by script).

 

How to config auto deploy

The server will auto reload every 5 minutes.

And you can add webhook in your repository settings.

settings

About


Languages

Language:JavaScript 61.5%Language:Shell 38.5%