Skip to content

Instantly share code, notes, and snippets.

@kgaut
Last active July 17, 2016 10:24
Show Gist options
  • Save kgaut/276b08a289f2e188f3cee9702d774339 to your computer and use it in GitHub Desktop.
Save kgaut/276b08a289f2e188f3cee9702d774339 to your computer and use it in GitHub Desktop.
version: "2"
services:
web:
image: kgaut/runner-drupal-php:php-5.6 # OR kgaut/runner-drupal-php:php-7
ports:
- 3012:80
environment:
DRUPAL_URI: 'http://127.0.0.1:3012/'
MYSQL_ENV_MYSQL_USER: drupal
MYSQL_ENV_MYSQL_PASSWORD: test
MYSQL_ENV_MYSQL_DATABASE: madb
volumes:
- ./www:/var/www/html
links:
- mysql:mysqlhost
mysql:
image: kgaut/runner-mysql:5.6
environment:
MYSQL_ROOT_PASSWORD: mysql
MYSQL_USER: drupal
MYSQL_PASSWORD: test
MYSQL_DATABASE: madb
volumes:
- ./db:/var/db
- ./docker/mysql:/var/lib/mysql #if you want percistent DB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment