We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
现在使用 busybox 镜像,这个镜像地址(/root/busybox.tar)在代码中写死了。
busybox
(/root/busybox.tar)
为了能有通用性,我们需要实现如下的 feature
feature
(/var/lib/wwcdocker/images)
/var/lib/wwcdocker/readlayers/balabala
暂时以如上方法实现,但上述方法有几个问题
我们需要将每个特定的镜像打包成 tar 并上传到 我们自己的 imageshub(github.com/iamwwc/imageshub),所以不具有普适性
imageshub
我们的镜像是整个 Linux 文件系统,并没有 Docker 的分层特性,所以无法对镜像 layer进行分层复用
Linux
Docker
layer
实现一个docker pull 功能,可以复用 docker hub 的镜像
docker pull
docker hub
The text was updated successfully, but these errors were encountered:
[Features]:
bf2b987
这个提交实现了 #2 的 `实现` 后续会添加类似 `docker pull` 的特性来实现镜像复用
No branches or pull requests
现在使用
busybox
镜像,这个镜像地址(/root/busybox.tar)
在代码中写死了。实现
为了能有通用性,我们需要实现如下的
feature
(/var/lib/wwcdocker/images)
/var/lib/wwcdocker/readlayers/balabala
下创建只读层存在问题
暂时以如上方法实现,但上述方法有几个问题
我们需要将每个特定的镜像打包成 tar 并上传到 我们自己的
imageshub
(github.com/iamwwc/imageshub),所以不具有普适性我们的镜像是整个
Linux
文件系统,并没有Docker
的分层特性,所以无法对镜像layer
进行分层复用TODO:
实现一个
docker pull
功能,可以复用docker hub
的镜像The text was updated successfully, but these errors were encountered: