docker pidfile_把玩Alpine linux(四):安装zsh和docker

1eb356fc9fe8580e6e6527cbee9e134c.gif

安装zsh

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

wiki: https://github.com/robbyrussell/oh-my-zsh/wiki

# 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

c73d2d57b7d029736d3d8ca72e967b8b.png

安装docker

0cb5e721be8a68542d52c77bb70e2105.png

删除旧版本的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 docker
DOCKER_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
➜ ~
让您学习到的每一节课都有所收获

《Linux就该这么学》是一本由资深运维专家刘遄老师及国内多名红帽架构师(RHCA)基于最新RHEL7系统共同编写的高质量Linux技术自学教程,极其适合用于Linux技术入门教程或讲课辅助教材。荣获双11、双12购物狂欢节IT品类书籍销量冠军,2017年、2018年国内读者增速最快的技术书籍,您可以在京东、当当、亚马逊及天猫搜索书名后购买,亦可加刘遄老师微信交流学习(手指按住下图3秒钟即可自动扫描)~

ef23079ff7a6159c315ba0db5b4489ae.png

刘遄老师QQ:5604215

☀ Linux技术交流群:560843(新群,火热加群中……)

☀ 官方站点:www.linuxprobe.com

☀ 书籍在线学习(电脑在线阅读效果更佳)

http://www.linuxprobe.com/chapter-00.html

《Linux就该这么学》是一本基于最新Linux系统编写,面向零基础读者的技术书籍。从Linux基础知识讲起,然后渐进式地提高内容难度,详细讲解Linux系统中各种服务的工作原理和配置方式,以匹配真实生产环境对运维人员的要求,突显内容的实用性。想要学习Linux系统的读者可以点击按钮了解这本书,同时这本书也适合专业的运维人员阅读,作为一本非常有参考价值的工具书!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值