This is the Docker Drupal/Wordpress optimized images for apache-php.
Available tags are:
The image basically contains:
version: '2'
services:
web:
image: naroner/docker_apache_php_drupal:latest
ports:
- "80:80"
- "9000:9000"
environment:
- SERVERNAME=example.local
- SERVERALIAS=example2.local *.example2.local
- BLACKFIRE_CLIENT_ID=XXXX
- BLACKFIRE_CLIENT_TOKEN=XXXX
volumes:
- /home/docker/projets/example/:/var/www/html/
- /home/docker/.ssh/:/var/www/.ssh/
- /var/www/html/.git
links:
- database:mysql
- mailhog
- solr
- redis
- blackfire
tty: true
database:
image: mariadb
ports:
- "3306:3306"
environment:
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
volumes:
-./mysql:/etc/mysql/conf.d
phpmyadmin:
image: geniousinteractive/docker-phpmyadmin
ports:
- "8010:80"
environment:
- MYSQL_ROOT_PASSWORD=
- UPLOAD_SIZE=2G
links:
- database:mysql
mailhog:
image: mailhog/mailhog
ports:
- "1025:1025"
- "8025:8025"
redis:
image: redis:4.0.8-alpine
ports:
- "6379:6379"
command: ["redis-server", "--appendonly", "yes"]
solr:
image: solr:8
ports:
- "8983:8983"
volumes:
- ./solr/collection2/conf:/var/solr/conf
entrypoint:
- solr-precreate
- collection1
blackfire:
image: blackfire/blackfire
environment:
- BLACKFIRE_SERVER_ID=XXXX
- BLACKFIRE_SERVER_TOKEN=XXXX
Content type
Image
Digest
Size
559.1 MB
Last updated
over 5 years ago
docker pull naroner/docker_apache_php_drupal