apache + PHP On Docker (ホームページ作成のお供に)
デザイナの方にとって、phpも編集できるホームページ作成環境を使われることがあるとおもうんですが、その際、WEBサーバの構築が必須になります。
しかし、敷居も高くなるのでDockerをつかってコマンド一発で準備を整える方法をご紹介します。
Docker Installation
お持ちのPCに合ったものインストールしてください
* Install On Mac
* Install On Windows
* Install On Linux
プロジェクトルートを作成
mkdir sample
cd sample
touch Dockerfile
touch docker-compose.yml
mkdir public-html
cd public-html
touch index.php
index.php編集
サンプルコードなので、ここはなんでもOK
index.php
<?php
phpinfo();
Dockerfile編集
Dockerfile
FROM centos:latest
RUN yum -y update && \
yum -y install httpd php
WORKDIR /var/www/html
ADD ./public-html /var/www/html
EXPOSE 80
docker-compose 編集
docker-compose.yml
version: '2'
services:
web: &app_base
build:
context: .
dockerfile: "Dockerfile"
command: /usr/sbin/httpd -D FOREGROUND
volumes:
- ./public-html:/var/www/html
ports:
- "80:80"
tty: true
stdin_open: true
イメージ(コンテナの雛形)作成
docker-compose build
コンテナを起動
docker-compose up
localhost :80 にアクセス
Author And Source
この問題について(apache + PHP On Docker (ホームページ作成のお供に)), 我々は、より多くの情報をここで見つけました https://qiita.com/hiraokashi/items/95889403f1726f49bc71著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .