25

Docker run コマンドには、ホスト ディレクトリをコンテナーにマウントするオプションがあります

-v=[]: Create a bind mount with: [host-dir]:[container-dir]:[rw|ro]. 
       If "host-dir" is missing, then docker creates a new volume.

そしてDockerfileにはVOLUME命令があります

VOLUME ["/data"] - The VOLUME instruction will add one or more new volumes 
                   to any container created from the image.

私が見host-dirたところ、Dockerfile を使用するときに rw/ro ステータスを指定する方法はありません。

他のコンテナーと共有する以外に、docker ファイルで VOLUME を使用する方法はありますか?

4

1 に答える 1