Sign inSign up

hasangnu/php-drupal

By hasangnu

Updated over 4 years ago

Image
0

232

hasangnu/php-drupal repository overview

Drupal

version: '3'

services:

  db:
    image: hasangnu/mariadb
    container_name: hasangnu-mariadb
    environment:
      MYSQL_ROOT_PASSWORD: 'drupal'
      MYSQL_DATABASE: 'drupal'
      MYSQL_USER: 'drupal'
      MYSQL_PASSWORD: 'drupal'
    volumes:
      - ./mariadb-data/mysql:/var/lib/mysql

  drupal:
    image: hasangnu/php-drupal
    container_name: hasangnu-drupal0
    ports:
      - 8880:80
    volumes:
      - ./drupal-data:/var/www/html
    restart: always

  adminer:
    image: hasangnu/adminer
    restart: always
    ports:
      - 8088:8080
docker-compose up -d

Tag summary

Content type

Image

Digest

Size

219.9 MB

Last updated

over 4 years ago

docker pull hasangnu/php-drupal