Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aminkhoshzahmat/b53b0ab12e017bef1a64bc73dd397786 to your computer and use it in GitHub Desktop.
Save aminkhoshzahmat/b53b0ab12e017bef1a64bc73dd397786 to your computer and use it in GitHub Desktop.
drupal - docker-compose.yml
version: '3'
services:
drupal:
image: drupal
ports:
- "80:80"
volumes:
- drupal-modules:/var/www/html/modules
- drupal-profiles:/var/www/html/profiles
- drupal-sites:/var/www/html/sites
- drupal-themes:/var/www/html/themes
postgres:
image: postgres
environment:
- POSTGRES_PASSWORD=password
volumes:
drupal-modules:
drupal-profiles:
drupal-sites:
drupal-themes:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment