Docker源码编译安装的方法

发布时间:2022-05-26 15:00:08 作者:iii
来源:亿速云 阅读:1235

本篇内容主要讲解“Docker源码编译安装的方法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Docker源码编译安装的方法”吧!

安装之前

docker源码需在docker容器编译环境中编译,所以先安装docker,安装环境依旧是ubuntu14.04

echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118e89f3a912897c070adbf76221572c52609d
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install docker-engine

起初是使用apt-get install docker.io安装,但在编译源码的时候会遇到arg错误。

安装

docker的安装命令很简单,虽然错误很多= =

apt-get install make git golang
git clone https://git@github.com/docker/docker
cd docker
make build
make binary

遇到的问题与解决方案

unknown instruction: arg

原因:

docker hub's automated build is still running docker 1.8 and doesn't support arg yet. there is a github issue tracking their upgrade to 1.9.

解决方案:采用安装最新的docker-engine方式

docker daemon启动失败

复制代码 代码如下:

fata[0000] error starting daemon: error initializing graphdriver: "/var/lib/docker" contains several valid graphdrivers: aufs, devicemapper; please cleanup or explicitly choose storage driver (-s <driver>)

解决方案:移除devicemap文件夹,如 mv /var/lib/docker/devicemapper/ .

make build出错一

step 6 : run apt-get update && apt-get install -y apparmor apt-utils aufs-tools automake bash-completion binutils-mingw-w64 bsdmainutils btrfs-tools build-essential clang createrepo curl dpkg-sig gcc-mingw-w64 git iptables jq libapparmor-dev libcap-dev libltdl-dev libsqlite3-dev libsystemd-journal-dev libtool mercurial net-tools pkg-config python-dev python-mock python-pip python-websocket ubuntu-zfs xfsprogs libzfs-dev tar zip --no-install-recommends && pip install awscli==1.10.15
---> running in 32ad02db3575
get:1 http://ppa.launchpad.net trusty inrelease [15.5 kb]
ign http://httpredir.debian.org jessie inrelease
get:2 http://httpredir.debian.org jessie-updates inrelease [142 kb]
get:3 http://security.debian.org jessie/updates inrelease [63.1 kb]
get:4 http://httpredir.debian.org jessie release.gpg [2373 b]
get:5 http://ppa.launchpad.net trusty/main amd64 packages [5150 b]
get:6 http://httpredir.debian.org jessie-updates/main amd64 packages [17.6 kb]
get:7 http://httpredir.debian.org jessie release [148 kb]
get:8 http://httpredir.debian.org jessie/main amd64 packages [9035 kb]
get:9 http://security.debian.org jessie/updates/main amd64 packages [232 kb]
fetched 9662 kb in 19s (504 kb/s)
w: failed to fetch http://httpredir.debian.org/debian/dists/jessie/main/binary-amd64/packages hash sum mismatch

w: failed to fetch http://security.debian.org/dists/jessie/updates/main/binary-amd64/packages hash sum mismatch

e: some index files failed to download. thew: failed to fetch http://httpredir.debian.org/debian/dists/jessie/main/binary-amd64/packages hash sum mismatch

看样子是源的问题哎╮(╯▽╰)╭

而且是run指令,应该是dockerfile运行容器之后的源错误,so,看下docker/dockerfile

# arg apt_mirror=httpredir.debian.org
run sed -i s/httpredir.debian.org/$apt_mirror/g /etc/apt/sources.list

在这里修改了源~从网上重新找个ftp.cn.debian.org,然而,。。。还是错。。。

好吧,那把这两句直接全部注释掉,用163的debian源内容echo到容器里,执行

复制代码 代码如下:

run echo "deb  jessie main non-free contrib\ndeb  jessie-updates main non-free contrib\ndeb  jessie-backports main non-free contrib\ndeb-src  jessie main non-free contrib\ndeb-src  jessie-updates main non-free contrib\ndeb-src  jessie-backports main non-free contrib\ndeb  jessie/updates main non-free contrib\ndeb-src  jessie/updates main non-free contrib" | tee /etc/apt/sources.list

再执行make build,出现依赖问题,那就用aptitude吧

run apt-get update && apt-get install -y aptitude
run aptitude install -y \

(同时去掉–no-install-recommends\那一行)

make build出错二

step 15 : run set -x   && export seccomp_path="$(mktemp -d)"   && curl -fssl "https://github.com/seccomp/libseccomp/releases/download/v${seccomp_version}/libseccomp-${seccomp_version}.tar.gz"     | tar -xzc "$seccomp_path" --strip-components=1   && (     cd "$seccomp_path"     && ./configure --prefix=/usr/local     && make     && make install && ldconfig   )   && rm -rf "$seccomp_path"
 ---> running in 4ad66d28289d
+ mktemp -d
+ export seccomp_path=/tmp/tmp.twpyfcirjc
+ curl -fssl https://github.com/seccomp/libseccomp/releases/download/v2.3.1/libseccomp-2.3.1.tar.gz
+ tar -xzc /tmp/tmp.twpyfcirjc --strip-components=1
curl: (56) ssl read: error:00000000:lib(0):func(0):reason(0), errno 104

gzip: stdin: unexpected end of file
tar: unexpected eof in archive
tar: unexpected eof in archive
tar: error is not recoverable: exiting now

网络问题,网上有说先下载下来再用add添加进去,结果发现校园网貌似访问这挺快的,连上vpn再执行就行了。。

make binary 出错

复制代码 代码如下:

error:/usr/local/go/pkg/tool/linux_amd64/link: running gcc failed: fork/exec /usr/bin/gcc: cannot allocate memory

内存不足~增大虚拟机内存呗

安装结果

make build

Docker源码编译安装的方法

make binary

Docker源码编译安装的方法

到此,相信大家对“Docker源码编译安装的方法”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

推荐阅读:
  1. lamp源码编译安装脚本+源码包
  2. 源码编译安装LAMP

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

docker

上一篇:Docker容器怎么互联

下一篇:如何使用Docker快速搭建Hadoop集群环境

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》