您好,登錄后才能下訂單哦!
今天小編給大家分享一下Linux離線安裝docker的方法的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
1. 準備docker離線包
下載需要安裝的docker版本,我此次下載的是
docker-17.03.2-ce.tgz版本
2. 準備docker.service 系統配置文件
docker.service [unit] description=docker application container engine documentation=https://docs.docker.com after=network-online.target firewalld.service wants=network-online.target [service] type=notify # the default is not to use systemd for cgroups because the delegate issues still # exists and systemd currently does not support the cgroup feature set required # for containers run by docker execstart=/usr/bin/dockerd execreload=/bin/kill -s hup $mainpid # having non-zero limit*s causes performance problems due to accounting overhead # in the kernel. we recommend using cgroups to do container-local accounting. limitnofile=infinity limitnproc=infinity limitcore=infinity # uncomment tasksmax if your systemd version supports it. # only systemd 226 and above support this version. #tasksmax=infinity timeoutstartsec=0 # set delegate yes so that systemd does not reset the cgroups of docker containers delegate=yes # kill only the docker process, not all processes in the cgroup killmode=process # restart the docker process if it exits prematurely restart=on-failure startlimitburst=3 startlimitinterval=60s [install] wantedby=multi-user.target
3. 準備安裝腳本和卸載腳本
安裝腳本 install.sh
#!/bin/sh echo '解壓tar包...' tar -xvf $1 echo '將docker目錄移到/usr/bin目錄下...' cp docker/* /usr/bin/ echo '將docker.service 移到/etc/systemd/system/ 目錄...' cp docker.service /etc/systemd/system/ echo '添加文件權限...' chmod +x /etc/systemd/system/docker.service echo '重新加載配置文件...' systemctl daemon-reload echo '啟動docker...' systemctl start docker echo '設置開機自啟...' systemctl enable docker.service echo 'docker安裝成功...' docker -v
卸載腳本 uninstall.sh
#!/bin/sh echo '刪除docker.service...' rm -f /etc/systemd/system/docker.service echo '刪除docker文件...' rm -rf /usr/bin/docker* echo '重新加載配置文件' systemctl daemon-reload echo '卸載成功...'
4. 安裝
4.1 此時目錄為:(只需要關注docker-17.03.2-ce.tgz、docker.service、install.sh、uninstall.sh即可)
4.2 執行腳本 sh install.sh docker-17.03.2-ce.tgz
執行過程如下:
待腳本執行完畢后,執行 docker -v
發現此時docker已安裝成功,可以用 docker --help
查看docker命令,從現在開始你就可以自己安裝image和container了
sh uninstall.sh
4.3 如果你想卸載docker,此時執行腳本 sh uninstall.sh
即可,執行過程如下:
此時輸入 docker -v
,發現docker已經卸載
以上就是“Linux離線安裝docker的方法”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。