Skip to content

aadl/docker4aadl

 
 

Repository files navigation

Docker-based Drupal stack

Build Status

AADL Dev Install Steps

There are two web applications that will be installed to provide a local AADL development environment:

  1. The AADL Drupal web site.
  2. The AADL API Laravel web service.

Installing the Drupal Web site

  1. Download a recent database dump file from univac.aadl.org. Open a terminal window, change directory to the docker4aadl directory and enter the following scp command to copy the latest database backup from univac:
    scp [email protected]:/mnt/backups/latest/daily_migration.sql.gz mariadb-init/

  2. Change directory to the aadlorg folder and install Drupal and the aadl custom modules by entering composer install

  3. Copy domain aliases from the 'etc_hosts' file in the docker4aadl directory to your local host machine's /etc/hosts file.

  4. Get Access Token from github for private AADL repositories

  5. Run docker-compose up to create docker containers and to install the database backup.

  6. Open terminal window in the aadldev_php container. Use the docker command:
    docker exec -it aadldev_php bash

    1. Download drupal cd /var/www/html/aadlorg && drush dl drupal --drupal-project-rename=web
    2. Install modules composer update
  7. In a browser, open http://aadldev.test:8000/ and complete the Drupal install process.

    1. Select standard install profile
    2. Database connection info:
      • database: drupal
      • username: drupal
      • password: drupal
      • Advanced info host: mariadb
  8. Prepare the aadl theme

    1. Change directory to web/themes/custom/aadl/
    2. Follow the installation steps in the aadl readme.md file
    3. Check that web/themes/contrib/ has the 'neato' and the 'neato 2' theme installed. If 'neato 2' is missing, scp a copy from pinkeye.
    4. In the browser, navigate to the admin/appearance section and select the aadl theme as the Default
    5. Rebuilt the drupal cache. Run drush cr from a terminal window connected to the aadldev_php container - from the root level for the web site aadlorg/web/
  9. Change path to '/../vendor/autoload.php' in aadlorg/web/autoload.php

Installing the API

Open terminal window in the aadldev_php container

  1. Clone AADL API from github
    cd /var/www/html && git clone https://github.com/aadl/api.git
  2. Install API
    cd /var/www/html/api %% composer install

Introduction

Docker4Drupal is a set of docker images optimized for Drupal. Use docker-compose.yml file from the latest stable release to spin up local environment on Linux, Mac OS X and Windows.

Stack

The Drupal stack consist of the following containers:

Container Versions Image ARM64 support Enabled by default
Nginx 1.21, 1.20, 1.19 wodby/nginx
Apache 2.4 wodby/apache
Drupal 9, 8, 7 wodby/drupal
PHP 8.0, 7.4, 7.3 wodby/drupal-php
Crond wodby/drupal-php
MariaDB 10.6, 10.5, 10.4, 10.3 wodby/mariadb
PostgreSQL 14, 13, 12, 11, 10, 9.6 wodby/postgres
Redis 6, 5 wodby/redis
Memcached 1 wodby/memcached
Varnish 6.0, 4.1 wodby/varnish
Node.js 16, 14, 12 wodby/node
Drupal node 1.0 wodby/drupal-node
Solr 8, 7, 6, 5 wodby/solr
Elasticsearch 7, 6 wodby/elasticsearch
Kibana 7, 6 wodby/kibana
OpenSMTPD 6.0 wodby/opensmtpd
Mailhog latest mailhog/mailhog
AthenaPDF 2.16.0 arachnysdocker/athenapdf-service
Rsyslog latest wodby/rsyslog
Blackfire latest blackfire/blackfire
Webgrind 1 wodby/webgrind
Xhprof viewer latest wodby/xhprof
Adminer 4.6 wodby/adminer
phpMyAdmin latest phpmyadmin/phpmyadmin
Selenium chrome 3.141 selenium/standalone-chrome
Traefik latest _/traefik

Supported Drupal versions: 9 / 8 / 7

Documentation

Full documentation is available at https://wodby.com/docs/stacks/drupal/local.

Image's tags

Images tags format is [VERSION]-[STABILITY_TAG] where:

[VERSION] is the version of an application (without patch version) running in a container, e.g. wodby/nginx:1.15-x.x.x where Nginx version is 1.15 and x.x.x is a stability tag. For some images we include both major and minor version like PHP 7.2, for others we include only major like Redis 5.

[STABILITY_TAG] is the version of an image that corresponds to a git tag of the image repository, e.g. wodby/mariadb:10.2-3.3.8 has MariaDB 10.2 and stability tag 3.3.8. New stability tags include patch updates for applications and image's fixes/improvements (new env vars, orchestration actions fixes, etc). Stability tag changes described in the corresponding a git tag description. Stability tags follow semantic versioning.

We highly encourage to use images only with stability tags.

Maintenance

We regularly update images used in this stack and release them together, see releases page for full changelog and update instructions. Most of routine updates for images and this project performed by the bot via scripts located at wodby/images.

Beyond local environment

Docker4Drupal is a project designed to help you spin up local environment with docker-compose. If you want to deploy a consistent stack with orchestrations to your own server, check out Drupal stack on Wodby .

Other Docker4x projects

License

This project is licensed under the MIT open source license.

Packages

No packages published

Languages

  • Shell 64.2%
  • PHP 18.3%
  • Makefile 15.7%
  • Dockerfile 1.8%