GitBook 是一個基於 Node.js 的命令行工具,可以使用 Github/Git 和 Markdown 來製做精美的電子書,GitBook 並不是關於 Git 的教程。php
GitBook支持輸出多種文檔格式:html
使用GitBook製做電子書,必備兩個文件:README.md和SUMMARY.md。linux
查找gitbook鏡像nginx
docker@default:~$ docker search -s 3 gitbook NAME DESCRIPTION STARS OFFICIAL AUTOMATED fellah/gitbook GitBook 9 [OK] tobegit3hub/gitbook-server 7 [OK] fellah/gitbook-ebook 3 [OK] billryan/gitbook Docker for GitBook with Unicode support 3 [OK]
安裝gitbook鏡像,官方鏡像下載太慢的話能夠使用國內的daocloudgit
docker@default:~$ docker pull fellah/gitbook
獲取gitbook靜態html文件,/yourpath下須要有README.md和SUMMARY.md文件。web
docker run -v /yourpath:/srv/gitbook -v /yourpath/html:/srv/html fellah/gitbook gitbook build . /srv/html
由於生成的是html靜態頁面因此須要一個web服務來顯示,當前選擇用nginx。
搜索nginx鏡像docker
docker@default:~$ docker search -s 3 nginx NAME DESCRIPTION STARS OFFICIAL AUTOMATED nginx Official build of Nginx. 3350 [OK] jwilder/nginx-proxy Automated Nginx reverse proxy for docker c... 691 [OK] richarvey/nginx-php-fpm Container running Nginx + PHP-FPM capable ... 215 [OK] jrcs/letsencrypt-nginx-proxy-companion LetsEncrypt container to use with nginx as... 71 [OK] million12/nginx-php Nginx + PHP-FPM 5.5, 5.6, 7.0 (NG), CentOS... 67 [OK] maxexcloo/nginx-php Docker framework container with Nginx and ... 57 [OK] webdevops/php-nginx Nginx with PHP-FPM 42 [OK] h3nrik/nginx-ldap NGINX web server with LDAP/AD, SSL and pro... 27 [OK] bitnami/nginx Bitnami nginx Docker Image 18 [OK] maxexcloo/nginx Docker framework container with Nginx inst... 7 [OK] webdevops/nginx Nginx container 5 [OK] million12/nginx Nginx: extensible, nicely tuned for better... 5 [OK] evild/alpine-nginx Minimalistic Docker image with Nginx 4 [OK] webdevops/hhvm-nginx Nginx with HHVM 3 [OK] ixbox/nginx Nginx on Alpine Linux. 3 [OK]
安裝nginxwindows
docker pull nginx
啓動nginx服務php-fpm
docker run --name my-nginx -v /yourpath/html:/usr/share/nginx/html -d -p 8080:80 nginx
系統是linux的話在這就已經完成了,Mac和windows還須要配置端口轉發,配置本地和docker的虛擬機之間的端口映射。工具