圧倒的今更感 メモだけ ディレクトリ構成 . ├── Dockerfile ├── apache-config.conf ├── application │ └── webroot │ └── index.php └── docker-compose.yml 各ファイル Dockerfile FROM php:5.6-apache RUN a2enmod rewrite EXPOSE 80 # Update the default apache site with the config we created. ADD apache-config.conf /etc/apache2/sites-enabled/000-default.conf apache-config.conf <VirtualHost *:80> #ServerName www.example.com # Ser