0

我想通过Spotify的 Docker 客户端将文件复制到未运行的容器-

文件的创建方式如下 -

File.createTempFile("olb-", "-temp").deleteOnExit().writeText("some text")

当我尝试:

client.copyToContainer(inputFileProvider.createFile(task.dataToInsert).toPath(), containerId, "/app/asd.json")

我得到:

Either container 1adbf9c1ee511272bec78a46be08bf9299c317b11cdb176eed986640ac86a38c or path /app/my_json.json not found.

好吧,我在使用RUN touch /app/my_json.json Next run 构建映像时创建了这个文件:

client.copyToContainer(inputFileProvider.createFile(task.dataToInsert).toPath(), containerId, "/app/my_json.json")

导致

{"message":"extraction point is not a directory"}

好的...我尝试了目录

copyToContainer(inputFileProvider.createFile(task.dataToInsert).toPath(), containerId, "/app/")

结果:

{"message":"Error processing tar file(exit status 1): cannot overwrite directory \"/\" with non-directory \"/\""}

相同的"/app"

任何想法如何通过 Java 客户端将文件复制到 docker 容器中?

4

1 回答 1

0

事实证明,我必须创建全新的文件夹,然后在其中创建单个文件并复制该文件夹。

val dir = Files.createTempDirectory("tem-folder-")
Files.createFile(dir.resolve("filename")).toFile().writeText("data to write")

val toBeCopied = dir.toFile()

cliend.copyToContainer(toBeCopied.toPath(), "containerId", "targetPath")
于 2019-03-07T10:50:39.903 回答