エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
What's the difference between "docker run -v ..." volume and Dockerfile VOLUME?
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
What's the difference between "docker run -v ..." volume and Dockerfile VOLUME?
I have successfully been able to share folders between a docker container with volumes using dock... I have successfully been able to share folders between a docker container with volumes using docker run -v /host/path:/container/path ... But my question is what the difference between this and using the VOLUME command in the Dockerfile VOLUME /path I am using an image that has a VOLUME command, and I'd like to know how to share it with my host. I have done it using the -v command above, but I did