DDI owns and maintains several images, including:
- PHP
- MySQL, MariaDB
- Redis
- Elasticsearch
All images are hosted on Docker Hub so you can simply pull them using Docker client in you OS, for instance:
$ docker pull drupaldocker/php:7.0
Image name consists of three parts:
- vendor
- image
- tag
All images created by DDI have a common vendor - drupaldocker. Image is a name of service (php, mysql) or tool (drush, console). Tag is usualy a version constraint inside image. Each image has default tag latest.
Please read and comment on this issue
All images are created based on Dockerfiles. Dockerfile is a script, composed of various instructions, which tells Docker Engine how to build an image.
TBA