イメージ取得しコンテナ起動
docker run --name apa000ex19 -d -p 8089:80 httpd
コンテナステータス確認
ステーテスがUPなら起動している
docker ps
ブラウザからアクセスして画面がでればOK
http://localhost:8089/
適当な「index.html」を作成
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Dockerテスト</title>
</head>
<body>
<div>メザシおいしい!</div>
</body>
</html>
PCからコンテナにコピー
docker cp ファイルが置いているパス apa000ex19:/usr/local/apache2/htdocs/
ブラウザにアクセスして
「メザシおいしい!」
が出てくればOK
http://localhost:8089/
コンテナからPCにコピー
ファイル名がかぶるので名前変更PC側の「index.html」を「index2.html」に変更
「index.html」ファイルがPCにできてたらOK
docker cp apa000ex19:/usr/local/apache2/htdocs/index.html /Users/ユーザー名/Desktop/
Apacheコンテナに接続
docker exec -it apa000ex19 bash