Showdoc 是什麼?
- 可在線編輯 API 文檔、技術文檔工具;
- 便於開發者對接文檔聯調,作一些記錄;
- 如下是 Docker 下生成運行的 showdoc 實踐的記錄;
但願能幫助有須要的人;
我在 Centos 7.x 下安裝的 docker
$ yum install epel-release –y
$ yum clean all
$ yum list
$ yum install docker-io –y
$ systemctl start docker
$ docker info
複製代碼
安裝showdoc
1. 從 github 上 clone 代碼到本地某個目錄
$ git clone -o gitbug https://github.com/star7th/showdoc
2. 進入到showdoc目錄開始安裝
$ cd showdoc/
$ docker build -t showdoc ./
$ docker run -d --name showdoc -p 8080:80 showdoc 若是想在不一樣端口啓動,請修改8080爲其它端口
3. 訪問ShowDoc
複製代碼