• <tfoot id='HVOIW'></tfoot>
    • <bdo id='HVOIW'></bdo><ul id='HVOIW'></ul>

    <i id='HVOIW'><tr id='HVOIW'><dt id='HVOIW'><q id='HVOIW'><span id='HVOIW'><b id='HVOIW'><form id='HVOIW'><ins id='HVOIW'></ins><ul id='HVOIW'></ul><sub id='HVOIW'></sub></form><legend id='HVOIW'></legend><bdo id='HVOIW'><pre id='HVOIW'><center id='HVOIW'></center></pre></bdo></b><th id='HVOIW'></th></span></q></dt></tr></i><div id='HVOIW'><tfoot id='HVOIW'></tfoot><dl id='HVOIW'><fieldset id='HVOIW'></fieldset></dl></div>
    <legend id='HVOIW'><style id='HVOIW'><dir id='HVOIW'><q id='HVOIW'></q></dir></style></legend>

        <small id='HVOIW'></small><noframes id='HVOIW'>

        Docker 输入文件并保存在输出中

        时间:2023-09-10
      1. <i id='5oSh0'><tr id='5oSh0'><dt id='5oSh0'><q id='5oSh0'><span id='5oSh0'><b id='5oSh0'><form id='5oSh0'><ins id='5oSh0'></ins><ul id='5oSh0'></ul><sub id='5oSh0'></sub></form><legend id='5oSh0'></legend><bdo id='5oSh0'><pre id='5oSh0'><center id='5oSh0'></center></pre></bdo></b><th id='5oSh0'></th></span></q></dt></tr></i><div id='5oSh0'><tfoot id='5oSh0'></tfoot><dl id='5oSh0'><fieldset id='5oSh0'></fieldset></dl></div>
        1. <tfoot id='5oSh0'></tfoot>

          • <bdo id='5oSh0'></bdo><ul id='5oSh0'></ul>
            <legend id='5oSh0'><style id='5oSh0'><dir id='5oSh0'><q id='5oSh0'></q></dir></style></legend>

              <tbody id='5oSh0'></tbody>

            <small id='5oSh0'></small><noframes id='5oSh0'>

                • 本文介绍了Docker 输入文件并保存在输出中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  I built a docker image that inputs a local file, does some stuff to it, and returns an output file saved locally, but it does not work. How do I allow local, user input for files and then saving the output on the local machine?

                  My Dockerfile looks like this:

                  FROM python:3
                  WORKDIR /app
                  COPY requirements.txt .
                  RUN pip install -r requirements.txt
                  COPY . /app
                  EXPOSE 5000
                  CMD [ "python", "process.py" ]
                  

                  Ideally, the terminal command would be something like this:

                  docker run -p 5000:5000 [name of docker] [local path to input file] [local path to save output file]
                  

                  When I run, I get this error:

                  docker: Error response from daemon: OCI runtime create failed: container_linux.go:349: starting container process caused "exec: "../test.flac": stat ../test.flac: no such file or directory": unknown.
                  

                  How can I do this?

                  解决方案

                  Generally, the docker container cannot break out into the host machine.

                  However, you can mount a local directory from the host machine into the container. The files created in the mount point, inside the container, will also be visible on the host machine.

                  In the example below I am mounting the working directory from the host machine inside the container. My current directory contains an input-file.
                  The container cats the content of the input-file and appends it to the output-file

                  // The initial wiorking directory content
                  .
                  └── input-file
                  
                  // Run my dummy container and ask it to cat the content of the input file into the output file
                  docker run -v $(pwd):/root/some-path ubuntu /bin/bash -c "cat /root/some-path/input-file >> /root/some-path/output-file"
                  
                  // The outcome
                  .
                  ├── input-file
                  └── output-file
                  
                  

                  这篇关于Docker 输入文件并保存在输出中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:将 Python 诗歌与 Docker 集成 下一篇:无法为 COPY 创建 docker 映像失败:stat/var/lib/docker

                  相关文章

                  最新文章

                  <legend id='jFoNN'><style id='jFoNN'><dir id='jFoNN'><q id='jFoNN'></q></dir></style></legend>

                  1. <i id='jFoNN'><tr id='jFoNN'><dt id='jFoNN'><q id='jFoNN'><span id='jFoNN'><b id='jFoNN'><form id='jFoNN'><ins id='jFoNN'></ins><ul id='jFoNN'></ul><sub id='jFoNN'></sub></form><legend id='jFoNN'></legend><bdo id='jFoNN'><pre id='jFoNN'><center id='jFoNN'></center></pre></bdo></b><th id='jFoNN'></th></span></q></dt></tr></i><div id='jFoNN'><tfoot id='jFoNN'></tfoot><dl id='jFoNN'><fieldset id='jFoNN'></fieldset></dl></div>
                    • <bdo id='jFoNN'></bdo><ul id='jFoNN'></ul>

                      <small id='jFoNN'></small><noframes id='jFoNN'>

                      <tfoot id='jFoNN'></tfoot>