Skip to content

Instantly share code, notes, and snippets.

@mchelen
Created March 1, 2016 19:45
Show Gist options
  • Save mchelen/171686d118ce22b4da67 to your computer and use it in GitHub Desktop.
Save mchelen/171686d118ce22b4da67 to your computer and use it in GitHub Desktop.
drupal docker compose
version: '2'
services:
web:
image: drupal:7.43-apache
volumes:
- .:/var/www/html
links:
- "db:mysql"
ports:
- "80:80"
db:
image: mysql
volumes:
- /var/lib/mysql
environment:
MYSQL_USER: drupal
MYSQL_PASSWORD: drupal
MYSQL_DATABASE: drupal
MYSQL_ROOT_PASSWORD: root
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment