用python批量创建docker_使用python docker api从tar创建docker

使用Python Docker API尝试从内存中的tar文件构建Docker镜像时遇到问题。当设置`custom_context=True`并提供tar档案时,API返回500 Internal Server Error,提示无法找到指定的Dockerfile。如果尝试从磁盘路径读取tar文件,会收到'archive/tar: invalid tar header'错误。
摘要由CSDN通过智能技术生成

我想使用一个远程Docker主机用Python Docker API从内存中的tar构建一个映像。

我成功地创建了一个Docker图像,当发送这样的Docker文件时:

client.images.build(fileobj=BytesIO(dockerfile_str.encode("utf-8"))

tag="some_image_name",

encoding="utf-8")

但是,当我试图设置

custom_context=True

通过一个

tar archive

根据

documentation

失败,错误为:

docker.errors.APIError: 500 Server Error: Internal Server Error ("Cannot locate specified Dockerfile: Dockerfile")

我就是这样做的:

with tarfile.open(fileobj=BytesIO(), mode="w") as tar:

dockerfile_str = """

FROM ubuntu

ENTRYPOINT ["printf", "Given command is %s"]

CMD ["not given"]

""".encode("utf-8")

dockerfile_tar_info = tarfile.TarInfo("Dockerfile")

dockerfile_tar_info.size = len(dockerfile_str)

tar.addfile(dockerfile_tar_info, BytesIO(dockerfile_str))

client = docker.DockerClient("some_url")

client.images.build(fileobj=tar.fileobj,

custom_context=True,

dockerfile="Dockerfile",

tag="some_image_name",

encoding="utf-8")

client.close()

编辑:

如果我使用磁盘上的路由:

...

with tarfile.open("tmp_1.tar", mode="w") as tar:

...

client.images.build(fileobj=tarfile.open("tmp_1.tar", mode="r").fileobj,

...

相反,我会收到以下错误消息:

docker.errors.APIError: 500 Server Error: Internal Server Error ("archive/tar: invalid tar header")

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值