#docker --mount オプションで ローカルとコンテナのファイルを同期させるコマンド例
Command example to synchronize local and container files with #docker --mount option
dockerコンテナを起動して、共有ディレクトリにファイルを作る
type=bind を指定して、ホストとゲストのディレクトリは両方、絶対パスで記述する
docker run -it --mount type=bind,src=/tmp,dst=/tmp alpine sh
/ # echo "ABC" > /tmp/some.txt
ローカルでファイルを開く
open /tmp/some.txt
open /tmp/some.txt
Original by Github issue
Author And Source
この問題について(#docker --mount オプションで ローカルとコンテナのファイルを同期させるコマンド例), 我々は、より多くの情報をここで見つけました https://qiita.com/YumaInaura/items/294ad496136c39e6f61e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .