Sign inSign up

touch4it/drupal-drush

By touch4it

Updated over 8 years ago

Command line shell for Drupal

Image
1

677

touch4it/drupal-drush repository overview

Usage

docker-compose.yml

version: '2'
services:
  apache:
    image: drupal:7
    volumes:
      - .:/var/www/html
    expose:
      - "80"
    links:
      - mariadb
    depends_on:
      - mariadb
  console:
    image: touch4it/drupal-drush
    volumes:
      - .:/app
    links:
      - mariadb
    depends_on:
      - mariadb
  mariadb:
    image: mariadb:10.0.33
      - ./mysql:/var/lib/mysql
    expose:
      - "3306"
docker-compose up -d
docker exec -it drupal-drush_console_1 drush
docker exec -it drupal-drush_console_1 drush cache-clear all
docker-compose down

Tag summary

Content type

Image

Digest

Size

107.1 MB

Last updated

over 8 years ago

docker pull touch4it/drupal-drush