Docker構建服務之部署和備份Jekyll網站

爆米花機槍手發表於2019-01-21

來自《第一本Docker書》,我覺得很有趣,就記錄一下

準備國內ubuntu映象

每次構建Ubuntu容器然後安裝軟體的時候,都異常的卡,那是因為沒有使用國內映象,所以我事先準備了sources.list檔案,一定要確定對應的ubuntu的版本號,我用的是18.04,內容如下

vi sources.list

輸入以下內容

deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

建立對應的Dockerfile

jekyll

mkdir jekyll
cd jekyll
vi Dockerfile

輸入如下內容

FROM ubuntu:18.04
LABEL maintainer="vector4wang@qq.com"
ENV REFRESHED_AT 2019-01-14
## 更換映象
RUN rm -rf /etc/apt/sources.list
ADD sources.list /etc/apt/

RUN apt-get -qq update
RUN apt-get -qq install ruby ruby-dev libffi-dev build-essential nodejs
RUN gem install --no-rdoc --no-ri jekyll -v 2.5.3

VOLUME /data
VOLUME /var/www/html
WORKDIR /data

ENTRYPOINT [ "jekyll", "build", "--destination=/var/www/html" ]

最後一句命令的意思就是每次啟動的時候就將/data下的原始檔編譯成可釋出的網站內容,並放在/var/www/html中供下面的apache使用

apache

mkdir apache
cd apache
vi Dockerfile

輸入以下內容

FROM ubuntu:18.04
LABEL maintainer="vector4wang@qq.com"

## 更換映象
RUN rm -rf /etc/apt/sources.list
ADD sources.list /etc/apt/

RUN apt-get -qq update
RUN apt-get -qq install apache2

VOLUME [ "/var/www/html" ]
WORKDIR /var/www/html

ENV APACHE_RUN_USER www-data
ENV APACHE_RUN_GROUP www-data
ENV APACHE_LOG_DIR /var/log/apache2
ENV APACHE_PID_FILE /var/run/apache2.pid
ENV APACHE_RUN_DIR /var/run/apache2
ENV APACHE_LOCK_DIR /var/lock/apache2

RUN mkdir -p $APACHE_RUN_DIR $APACHE_LOCK_DIR $APACHE_LOG_DIR

EXPOSE 80

ENTRYPOINT [ "/usr/sbin/apachectl" ]
CMD ["-D", "FOREGROUND"]

最終的目錄結構為:

.
├── apache
│   ├── Dockerfile
│   └── sources.list
├── jekyll
    ├── Dockerfile
    └── sources.list

構建

分別構建 jekyll 和 apache

cd jekyll
docker build -t vector/jekyll .

cd apache
docker build -t vector/apache .

注意:一定不要忘記更換容器的映象源…

執行docker images
2019-01-14 21-28-56.png

啟動服務

jekyll原始檔

建立一個目錄

mkdir jekyll-src
cd jekyll-src

從github上下載一個jekyll模板程式碼

git clone https://github.com/turnbullpress/james_blog.git
cd james_blog

啟動jekyll

docker run -v /Users/wangxc/Develop/docker/jekyll-src/james_blog:/data/ --name vector_blog vector/jekyll

結果為

Configuration file: none
            Source: /data
       Destination: /var/www/html
      Generating...
                    done.

“卷是在一個或多個容器中特殊指定的目錄,卷會繞過聯合檔案系統,為持久化資料和共享資料提供幾個有用的特性。
卷可以在容器間共享和重用。
共享卷時不一定要執行相應的容器。
對卷的修改會直接在捲上反映出來。
更新映象時不會包含對卷的修改。
卷會一直存在,直到沒有容器使用它們。
利用卷,可以在不用提交映象修改的情況下,向映象里加入資料(如原始碼、資料或者其他內容),並且可以在容器間共享這些資料。
卷在Docker宿主機的/var/lib/docker/volumes目錄中。可以通過docker inspect命令檢視某個卷的具體位置,如docker inspect -f “{{ range .Mounts }}{{.}}{{end}}”。”
摘錄來自: [澳] 詹姆斯·特恩布林(James Turnbull). “第一本Docker書(修訂版)。” iBooks.

啟動apache

docker run -d -P --volumes-from vector_blog vector/apache

“–volumes-from把指定容器裡的所有卷都加入新建立的容器裡。這意味著,Apache容器可以訪問之前建立的james_blog容器裡/var/www/html卷中存放的編譯後的Jekyll網站。即便james_blog容器沒有執行,Apache容器也可以訪問這個卷”
**摘錄來自: [澳] 詹姆斯·特恩布林(James Turnbull). “第一本Docker書(修訂版)。” iBooks. **

此時apache這個容器可以訪問jekyll容器裡的所有卷,我們進入apache內容看一下

docker exec -ti bdd9df87c189 /bin/bash

進入對應的目錄可看到jekyll中的卷

/var/www/html
/data

檢視宿主機與容器的埠對映情況

docker ps 
或
docker port e539ff7ed7e8 80

得到0.0.0.0:32768,然後宿主機訪問localhost:32768

微信截圖_20190115092234.png

編輯內容

進入宿主機的jekyll模板原始碼中,對_config.yml進行相關的修改,比如修改title為自己的名字或者其他的內容,儲存後退出,然後執行

docker start vector_blog

通過檢視日誌docker logs vector_blog可以看到

Configuration file: /data/_config.yml
            Source: /data
       Destination: /var/www/html
      Generating... 
                    done.
 Auto-regeneration: disabled. Use --watch to enable.

已經跟新,這個時候,我們重新整理下頁面localhost:32768就可以看到最新的內容了,是不是很有趣

備份

這裡提供兩種思路吧,
第一種:我自己用的是hexo,一般都是直接備份在github上,jekyll也一樣,儲存在github上是很容易很方便的;

第二種就是書上說的直接對捲進行備份

run --rm --volumes-from vector_blog -v $(pwd):/backup ubuntu:18.04 \
tar cvf /backup/vector_blog_backup.tar /var/www/html

指定了–rm標誌,這個標誌對於只用一次的容器,或者說用完即扔的容器,很有用。這個標誌會在容器的程式執行完畢後,自動刪除容器。對於只用一次的容器來說,這是一種很方便的清理方法。

個人感覺還是備份到git上方便。

相關文章