ホスト側のカレントディレクトリ下にhtmlディレクトリを作成し、コンテナ側の/var/www/htmlディレクトリにマウントしてコンテナを起動する。
% ls html % docker container run -d --rm -p 8080:80 --mount type=bind,src=$(pwd)/html,dst=/var/www/html php:5.4-apache % echo "<?php phpinfo();" > $(pwd)/html/index.php
ホスト側のカレントディレクトリ下にhtmlディレクトリを作成し、コンテナ側の/var/www/htmlディレクトリにマウントしてコンテナを起動する。
% ls html % docker container run -d --rm -p 8080:80 --mount type=bind,src=$(pwd)/html,dst=/var/www/html php:5.4-apache % echo "<?php phpinfo();" > $(pwd)/html/index.php