#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

Original by Github issue