我正在使用Docker-py API处理和操纵Docker容器。在API中,put_archive()函数期望data字段以字节为单位。
因此,使用tarfile库,我有:

import tarfile
import io

container = client.create_container(image="myimage", command="/bin/bash")
source = "~/.ssh/id_rsa.pub"
tarfile = create_tar_file(path=source, name="keys.tar")
# tarfile = "keys.tar"
# How can I read the tar file was a BytesIO() object?
data = io.BytesIO()
client.put_archive(container=container, path="/tmp", data=data)

API说:



我的问题是:

如何将tar文件作为BytesIO()读取,以便可以将其传递给put_archive()函数?

最佳答案

您可以这样做(未经测试,因为我没有安装Docker-py):

with open('keys.tar', 'rb') as fin:
    data = io.BytesIO(fin.read())

关于python - 将tarfile读取到BytesIO中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39603978/

10-12 05:31