Skip to content

Latest commit

 

History

History
62 lines (41 loc) · 1.94 KB

README.md

File metadata and controls

62 lines (41 loc) · 1.94 KB

Dockerised Drupal 8 development environment using PHP 7.0 on Ubuntu 14.04 with HTTP/2. This image is the development companion to the docker-drupal-php70 project.

Included Tools

Debugging Tools

  • XDebug - PHP debugging and profiling.

Front-end Tools

PHP Documentation Tools

  • DoxyGen - generate documentation from annotated PHP code. It is used to generate XML which is then interpreted by Sphinx.
  • Sphinx - generate beautiful Read The Docs format using Breathe as a bridge to DoxyGen XML output.

Other

  • NodeJS - Javascript runtime.
  • Java Runtime Environment (JRE) - project dev tools like sitespeed.io need this.

Installation

Create Presistant Database data-only container

# Build database image based off MySQL 5.6
sudo docker run -d --name mysql-drupal-php70-dev mysql:5.6 --entrypoint /bin/echo MySQL data-only container for Drupal Dev MySQL

Build Project using Docker Compose

# Customise docker-compose.yml configurations for environment.
cp docker-compose.yml.dist docker-compose.yml
vim docker-compose.yml

# Build docker containers using Docker Composer.
sudo docker-compose build
sudo docker-compose up -d

Host Access

From the host server, add the web container IP address to the hosts file.

# Add IP address to hosts file.
./hosts.sh

Logging into Web Front-end

# Using the container name of the web frontend.
sudo docker exec -it dockerdrupalphp70dev_drupalphp70devweb_1 su - ubuntu

TODO

  • XHProf - function-level hierarchical profiler.