无法将文件复制到 docker 主机

Unable to copy the file to docker host

我正在尝试执行下面的 docker 命令,我试图将“Orthanc.json”文件放入我的系统文件夹,即 "orthanc".

docker run --rm --entrypoint=cat jodogne/orthanc /etc/orthanc/orthanc.json >  
 orthanc/orthanc.json

/etc/orthanc/orthanc.json 下 - 它是目录而不是文件 - 我无法使用 vim 编辑器来 read/open 文件。 - 这是 public 一个。任何人都可以使用此 link Orthanc link

访问

我收到以下错误消息,您能帮助我了解问题所在吗?

-bash: /orthanc/orthanc.json: Is a directory

orthanc.json 应该是一个文件,但为什么把它当作一个目录?

当我使用 vim orthanc.json 时,它会抛出一条错误消息,指出它是一个目录。

我应该如何将其视为配置文件,因为我必须对其进行更改?

不知何故,您的主机系统上已经有了一个名为 /orthanc/orthanc.json 的目录。删除它并重试。

rmdir /orthanc/orthanc.json     # if empty
rm -rf /orthanc/orthanc.json    # if not empty -- but see what's in there first!