Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zaporylie/docker-drupal
Docker for Drupal - nginx, php-fpm, drush, sshd
https://github.com/zaporylie/docker-drupal
Last synced: 6 days ago
JSON representation
Docker for Drupal - nginx, php-fpm, drush, sshd
- Host: GitHub
- URL: https://github.com/zaporylie/docker-drupal
- Owner: zaporylie
- Created: 2015-03-08T19:46:48.000Z (almost 10 years ago)
- Default Branch: 1.x
- Last Pushed: 2016-08-29T06:24:11.000Z (over 8 years ago)
- Last Synced: 2024-12-14T03:06:04.433Z (9 days ago)
- Language: Shell
- Homepage: https://registry.hub.docker.com/u/zaporylie/drupal/
- Size: 67.4 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[Deprecated] Drupal Docker Image
=============================**Thanks for your interest but this project is now deprecated. Visit http://github.com/drupal-docker if you're looking for Drupal-Docker integration. Following organization is a direct successor of all repos which are related to Drupal&Docker and created by me. Thanks and good luck!**
[![Build Status](https://travis-ci.org/zaporylie/docker-drupal.svg?branch=master)](https://travis-ci.org/zaporylie/docker-drupal)[![Pulls](https://img.shields.io/docker/pulls/zaporylie/drupal.svg)](https://hub.docker.com/r/zaporylie/drupal)[![Stars](https://img.shields.io/docker/stars/zaporylie/drupal.svg)](https://hub.docker.com/r/zaporylie/drupal)
Simple docker image to build containers for your Drupal projects. If you are working on Drupal code you might be more interested in zaporylie/drupal-dev image which is just an extension for this image anyway.
## What you get?
* NGINX (thanks to [wiki.nginx.org](http://wiki.nginx.org/Drupal)
* php 5.6
* php-fpm (thanks to [ricardoamaro/docker-drupal-nginx](https://github.com/ricardoamaro/docker-drupal-nginx))
* all php libraries required by Drupal
* sshd
* drush
* mysql (but I strongly recommend to link separate mysql container instead)## Some features
* autodiscovery mode (by default) will check if we have existing Drupal site in database OR if settings file exists but there is no database OR if it is brand new container with nothing in it
* numbers of environmental variables which can be used to customize container (ex. select Drupal version)
* mysql on demand (turned off by default but if you won't link separate mysql container it will be started automatically for you)
* sshd password will be autogenerated on container start. If you'd like you can set custom password instead - just use SSH_PASSWORD enviromental variable.## Quickstart
**With** separate mysql container (recommended):
````
docker run \
--name \
--link :mysql \
-e MYSQL_HOST_NAME=mysql \
-d \
-P \
zaporylie/drupal
````**Without** separate mysql container:
````
docker run \
--name \
-d \
-P \
zaporylie/drupal
````## Configuration
| ENNVIRONMENTAL VARIABLE | DEFAULT VALUE | COMMENTS |
|:-:|:-:|:-:|
| DRUPAL_DB | drupal | |
| DRUPAL_DB_USER | drupal | |
| DRUPAL_DB_PASSWORD | drupal | |
| DRUPAL_PROFILE | minimal | |
| DRUPAL_SUBDIR | default | |
| DRUPAL_MAJOR_VERSION | 7 | |
| DRUPAL_DOWNLOAD_METHOD | drush | |
| DRUPAL_GIT_BRANCH | 7.x | Only if DRUPAL_DOWNLOAD_METHOD is git |
| DRUPAL_GIT_DEPTH | 1 | Only if DRUPAL_DOWNLOAD_METHOD is git |
| METHOD | auto | Synchronization method (use drush sql-sync or file) |
| MYSQL_HOST_NAME | (optional) | skip this if you're not linking mysql container |
| DRUPAL_TEST | 0 | |
| BUILD_TEST | 0 | |## Dependencies (no longer required):
### Mysql
If you don't want to lose your data build data-only container first:
````
docker run \
--name mysql_data \
--entrypoint /bin/echo \
mysql:5.5 \
MYSQL data-only container
````... then container with running mysql process ...
````
docker run \
--name mysql_service\
-e MYSQL_ROOT_PASSWORD= \
--volumes-from mysql_data \
-d mysql:5.5
````## Credits
This project was created by Jakub Piasecki
[![nodesource/node](http://dockeri.co/image/zaporylie/drupal)](https://registry.hub.docker.com/u/zaporylie/drupal/)