docekerでhttpdイメージを実行する

PowerShellで以下のコマンドを実行し、イメージを取得する
docker image pull httpd

 

PowerShellで以下のコマンドを実行し、イメージを実行する
docker container run -d -p 8080:80 httpd

 

③ブラウザに以下を入力し、アクセスする。

 ⇒「It work!」が表示されればOK

http://localhost:8080/

 

PowerShellで以下のコマンドを実行し、実行中のコンテナIDを取得する
docker ps

 

PowerShellで以下のコマンドを実行し、イメージを停止する

 ⇒連番は④で取得したコンテナIDを指定する
docker stop 48225654bf27