溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Alpine linux下怎么安裝zsh和docker

發(fā)布時間:2022-02-11 09:31:19 來源:億速云 閱讀:270 作者:iii 欄目:開發(fā)技術

這篇文章主要介紹“Alpine linux下怎么安裝zsh和docker”,在日常操作中,相信很多人在Alpine linux下怎么安裝zsh和docker問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Alpine linux下怎么安裝zsh和docker”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

Alpine linux下怎么安裝zsh和docker

安裝zsh

官網地址:https://ohmyz.sh/

# alpine linux# apk add zsh curl wget git

參照官網

# Via curl$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"# Via wget# sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"

改變當前用戶的shell

# alpine linux# sed -i -e "s/bin\/ash/bin\/zsh/" /etc/passwd# exit

重新登陸shell

Alpine linux下怎么安裝zsh和docker

安裝docker

Alpine linux下怎么安裝zsh和docker
刪除舊版本的docker,假如有。
? ~ apk del docker
? ~ rm -rf /etc/docker /var/lib/docker /var/run/docker

如果沒有docker的安裝包,需要將community地址添加到 /etc/apk/repositories

? ~ apk add docker
(1/8) Installing libmnl (1.0.4-r0)
(2/8) Installing jansson (2.10-r0)
(3/8) Installing libnftnl-libs (1.0.8-r1)
(4/8) Installing iptables (1.6.1-r1)
(5/8) Installing libltdl (2.4.6-r4)
(6/8) Installing libseccomp (2.3.2-r1)
(7/8) Installing docker (17.12.1-r0)
Executing docker-17.12.1-r0.pre-install
(8/8) Installing docker-zsh-completion (17.12.1-r0)
Executing busybox-1.27.2-r8.trigger
OK: 710 MiB in 65 packages

啟動服務

? ~ rc-service docker start
* /var/log/docker.log: creating file
* /var/log/docker.log: correcting mode
* /var/log/docker.log: correcting owner
* Starting docker ... [ ok ]

驗證服務是否啟動

# docker info? ~ docker version
Client:
Version: 17.12.1-ce
API version: 1.35
Go version: go1.9.4
Git commit: 9584b2309e
Built: Wed Mar 7 13:17:02 2018
OS/Arch: linux/amd64

Server:
Engine:
Version: 17.12.1-ce
API version: 1.35 (minimum version 1.12)
Go version: go1.9.4
Git commit: v17.12.1-ce
Built: Wed Mar 7 13:16:22 2018
OS/Arch: linux/amd64
Experimental: false? ~ rc-update add docker boot
* service docker added to runlevel boot

服務啟動加載的腳本

? ~ rc-service -r docker
/etc/init.d/docker

開啟遠程api及配置國內鏡像

? ~ vim /etc/conf.d/docker
DOCKER_OPTS默認為空值# /etc/conf.d/docker: config file for /etc/init.d/docker# where the docker daemon output gets piped# this contains both stdout and stderr. If you need to separate them,# see the settings below#DOCKER_LOGFILE="/var/log/docker.log"# where the docker daemon stdout gets piped# if this is not set, DOCKER_LOGFILE is used#DOCKER_OUTFILE="/var/log/docker-out.log"# where the docker daemon stderr gets piped# if this is not set, DOCKER_LOGFILE is used#DOCKER_ERRFILE="/var/log/docker-err.log"# where docker's pid get stored#DOCKER_PIDFILE="/run/docker.pid"# where the docker daemon itself is run from#DOCKERD_BINARY="/usr/bin/dockerd"# any other random options you want to pass to dockerDOCKER_OPTS="-H 0.0.0.0:2375 -H unix:///var/run/docker.sock --registry-mirror=http://xxxx.m.daocloud.io"# disable grsecurity features#disable_grsec="chroot_deny_chmod chroot_deny_mknod"

重啟docker服務,可以遠程telnet一下docker的2375端口試試

? ~ service docker restart
* WARNING: you are stopping a boot service
* Stopping docker ... [ ok ]
* Starting docker ... [ ok ]
? ~ telnet 192.168.163.200 2375

HTTP/1.1 400 Bad Request
Content-Type: text/plain; charset=utf-8
Connection: close

400 Bad RequestConnection closed by foreign host
? ~

到此,關于“Alpine linux下怎么安裝zsh和docker”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI