本篇內(nèi)容主要講解“Watchtower有什么功能”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“Watchtower有什么功能”吧!
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、重慶小程序開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了綿陽(yáng)免費(fèi)建站歡迎大家使用!
前言
Docker 容器的部署有一種在手機(jī)上裝 App 的感覺(jué),但 Docker 容器并不會(huì)像手機(jī) App 那樣會(huì)自動(dòng)更新,而如果我們需要更新容器一般需要以下四個(gè)步驟:
停止容器:docker stop <CONTAINER>
刪除容器:docker rm <CONTAINER>
更新鏡像:docker pull <IMAGE>
啟動(dòng)容器:docker run <ARG> ... <IMAGE>
停止容器這個(gè)步驟可以在刪除容器時(shí)使用 -f 參數(shù)來(lái)代替,即使這樣還是需要三個(gè)步驟。如果部署了大量的容器需要更新使用這種傳統(tǒng)的方式工作量是巨大的。
Watchtower 是一個(gè)可以實(shí)現(xiàn)自動(dòng)化更新 Docker 基礎(chǔ)鏡像與容器的實(shí)用工具。它監(jiān)視正在運(yùn)行的容器以及相關(guān)的鏡像,當(dāng)檢測(cè)到 reg­istry 中的鏡像與本地的鏡像有差異時(shí),它會(huì)拉取最新鏡像并使用最初部署時(shí)相同的參數(shù)重新啟動(dòng)相應(yīng)的容器,一切好像什么都沒(méi)發(fā)生過(guò),就像更新手機(jī)上的 App 一樣。
快速開(kāi)始
Watch­tower 本身被打包為 Docker 鏡像,因此可以像運(yùn)行任何其他容器一樣運(yùn)行它:
docker run -d \ --name watchtower \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower
然后所有容器都會(huì)自動(dòng)更新,也包括 Watch­tower 本身。
選項(xiàng)參數(shù)
$ docker run --rm containrrr/watchtower -h Watchtower automatically updates running Docker containers whenever a new image is released. More information available at https://github.com/containrrr/watchtower/. Usage: watchtower [flags] Flags: -a, --api-version string api version to use by docker client (default "1.24") -c, --cleanup remove previously used images after updating -d, --debug enable debug mode with verbose logging --enable-lifecycle-hooks Enable the execution of commands triggered by pre- and post-update lifecycle hooks -h, --help help for watchtower -H, --host string daemon socket to connect to (default "unix:///var/run/docker.sock") -S, --include-stopped Will also include created and exited containers -i, --interval int poll interval (in seconds) (default 300) -e, --label-enable watch containers where the com.centurylinklabs.watchtower.enable label is true -m, --monitor-only Will only monitor for new images, not update the containers --no-pull do not pull any new images --no-restart do not restart any containers --notification-email-delay int Delay before sending notifications, expressed in seconds --notification-email-from string Address to send notification emails from --notification-email-server string SMTP server to send notification emails through --notification-email-server-password string SMTP server password for sending notifications --notification-email-server-port int SMTP server port to send notification emails through (default 25) --notification-email-server-tls-skip-verify Controls whether watchtower verifies the SMTP server's certificate chain and host name. Should only be used for testing. --notification-email-server-user string SMTP server user for sending notifications --notification-email-subjecttag string Subject prefix tag for notifications via mail --notification-email-to string Address to send notification emails to --notification-gotify-token string The Gotify Application required to query the Gotify API --notification-gotify-url string The Gotify URL to send notifications to --notification-msteams-data The MSTeams notifier will try to extract log entry fields as MSTeams message facts --notification-msteams-hook string The MSTeams WebHook URL to send notifications to --notification-slack-channel string A string which overrides the webhook's default channel. Example: #my-custom-channel --notification-slack-hook-url string The Slack Hook URL to send notifications to --notification-slack-icon-emoji string An emoji code string to use in place of the default icon --notification-slack-icon-url string An icon image URL string to use in place of the default icon --notification-slack-identifier string A string which will be used to identify the messages coming from this watchtower instance (default "watchtower") -n, --notifications strings notification types to send (valid: email, slack, msteams, gotify) --notifications-level string The log level used for sending notifications. Possible values: panic, fatal, error, warn, info or debug (default "info") --remove-volumes remove attached volumes before updating --revive-stopped Will also start stopped containers that were updated, if include-stopped is active -R, --run-once Run once now and exit -s, --schedule string the cron expression which defines when to update -t, --stop-timeout duration timeout before a container is forcefully stopped (default 10s) -v, --tlsverify use TLS and verify the remote
自動(dòng)清除舊鏡像
官方給出的默認(rèn)啟動(dòng)命令在長(zhǎng)期使用后會(huì)堆積非常多的標(biāo)簽為 none 的舊鏡像,如果放任不管會(huì)占用大量的磁盤空間。要避免這種情況可以加入 --cleanup 選項(xiàng),這樣每次更新都會(huì)把舊的鏡像清理掉。
docker run -d \ --name watchtower \ --restart unless-stopped \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower \ --cleanup
--cleanup 選項(xiàng)可以簡(jiǎn)寫為 -c:
docker run -d \ --name watchtower \ --restart unless-stopped \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower -c
選擇性自動(dòng)更新
某些容器可能需要穩(wěn)定的運(yùn)行,經(jīng)常更新或重啟可能會(huì)造成一些問(wèn)題,這時(shí)我們可以使用一些選項(xiàng)參數(shù)來(lái)選擇與控制容器的更新。
容器更新列表
假設(shè)我們只想更新 nginx、redis 這兩個(gè)容器,我們可以把容器名稱追加到啟動(dòng)命令的最后面,就像下面這個(gè)例子:
docker run -d \ --name watchtower \ --restart unless-stopped \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower -c \ nginx redis
博主覺(jué)得把需要更新的容器名稱寫在啟動(dòng)命令中不利于管理,于是想了個(gè)更好的方法,建立一個(gè)更新列表文件。
$ cat ~/.watchtower.list aria2-pro unlockmusic mtg ...
通過(guò)變量的方式去調(diào)用這個(gè)列表:
docker run -d \ --name watchtower \ --restart unless-stopped \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower -c \ $(cat ~/.watchtower.list)
這樣只需要調(diào)整列表后刪除 Watch­tower 容器并重新執(zhí)行上面的命令重新啟動(dòng) Watch­tower 即可。
2. 設(shè)置單個(gè)容器自動(dòng)更新特征
給容器添加 com.centurylinklabs.watchtower.enable 這個(gè) LA­BEL 并設(shè)置它的值為 false,或者在啟動(dòng)命令中加入 --label com.centurylinklabs.watchtower.enable=false 參數(shù)可以排除相應(yīng)的容器。下面這個(gè)例子是博主的 openwrt-mini 鏡像的容器啟動(dòng)命令,Watch­tower 將永遠(yuǎn)忽略它的更新,即使它包含在自動(dòng)更新列表中。
docker run -d \ --name openwrt-mini \ --restart always \ --network openwrt \ --privileged \ --label com.centurylinklabs.watchtower.enable=false \ p3terx/openwrt-mini \ /sbin/init
當(dāng)容器啟動(dòng)命令中加入 --label com.centurylinklabs.watchtower.enable=true 參數(shù),并且給 Watch­tower 加上 --label-enable 選項(xiàng)時(shí),Watch­tower 將只更新這些包含此參數(shù)的容器。
docker run -d \ --name watchtower \ --restart unless-stopped \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower -c \ --label-enable
--label-enable 可以簡(jiǎn)寫為 -e:
docker run -d \ --name watchtower \ --restart unless-stopped \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower -ce
因?yàn)樾枰谌萜鲉?dòng)時(shí)進(jìn)行設(shè)置,且設(shè)置后就無(wú)法直接更改,只能重建容器,所以這種方式的靈活性不如更新列表法。尤其是在設(shè)置 com.centurylinklabs.watchtower.enable=false 參數(shù)后容器將永遠(yuǎn)被 Watch­tower 忽略,也包括后面將要提到的手動(dòng)更新方式,所以一般不推薦這樣做,除非你愿意手動(dòng)重建的原生方式更新。
設(shè)置自動(dòng)更新檢查頻率
默認(rèn)情況下 Watch­tower 每 5 分鐘會(huì)輪詢一次,如果你覺(jué)得這個(gè)頻率太高了可以使用如下選項(xiàng)來(lái)控制更新檢查的頻率,但二者只能選擇其一。
--interval, -i - 設(shè)置更新檢測(cè)時(shí)間間隔,單位為秒。比如每隔 1 個(gè)小時(shí)檢查一次更新:
docker run -d \ --name watchtower \ --restart unless-stopped \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower -c \ --interval 3600
--schedule, -s - 設(shè)置定時(shí)檢測(cè)更新時(shí)間。格式為 6 字段 Cron 表達(dá)式,而非傳統(tǒng)的 5 字段,即第一位是秒。比如每天凌晨 2 點(diǎn)檢查一次更新:
docker run -d \ --name watchtower \ --restart unless-stopped \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower -c \ --schedule "0 0 2 * * *"
手動(dòng)更新
前面的使用方式都是讓 Watch­tower 以 detached(后臺(tái))模式在運(yùn)行并自動(dòng)更新容器,而 Watch­tower 也支持以 foreground(前臺(tái))模式來(lái)使用,即運(yùn)行一次退出并刪掉容器,來(lái)實(shí)現(xiàn)手動(dòng)更新容器。這對(duì)于偶爾更新一次那些不在自動(dòng)更新列表中的容器非常有用。
對(duì)于 foreground 模式,需要加上 --run-once 這個(gè)專用的選項(xiàng)。下面的例子 Docker 會(huì)運(yùn)行一次 Watch­tower 并檢查 aria2-pro 容器的基礎(chǔ)鏡像更新,最后刪掉本次運(yùn)行創(chuàng)建的 Watch­tower 容器。
docker run --rm \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower -c \ --run-once \ aria2-pro
--run-once 可以簡(jiǎn)寫為 -R:
docker run --rm \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower -cR \ aria2-pro
需要注意的是當(dāng)這個(gè)容器設(shè)置過(guò) com.centurylinklabs.watchtower.enable=false 參數(shù)時(shí)不會(huì)更新。
到此,相信大家對(duì)“Watchtower有什么功能”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
當(dāng)前文章:Watchtower有什么功能
網(wǎng)站網(wǎng)址:http://muchs.cn/article10/iejcgo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開(kāi)發(fā)、網(wǎng)站策劃、企業(yè)建站、網(wǎng)站設(shè)計(jì)公司、微信公眾號(hào)、靜態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)