0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

DockerでPHP5.6環境を構築(Macの場合)

Posted at

イメージの取得

Docker HubのPHP公式レジストリから、php:5.6-apacheイメージを取得

docker pull php:5.6-apache

コンテナの作成

php56という名前のコンテナを、ポート番号8080で稼働させ、ホストPCのデスクトップに配置したphp56というディレクトリをバインドマウントする場合、以下のdocker runコマンドを実行。

docker run --name php56 -d -p 8080:80 -v /Users/ユーザー名/Desktop/php56:/var/www/html php:5.6-apache

index.phpの作成

確認用として、ホストPCのデスクトップにあるphp56ディレクトリにindex.phpを作成し、以下の内容を記述。

index.php
<?php echo phpinfo(); ?>

ブラウザでアクセス

ブラウザで http://localhost:8080
にアクセスし、phpinfoが表示されればOK。

あとは、ホストPCのphp56ディレクトリ内でガシガシコーディングするだけ!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?