Created
June 22, 2021 17:22
-
-
Save aminkhoshzahmat/b53b0ab12e017bef1a64bc73dd397786 to your computer and use it in GitHub Desktop.
drupal - docker-compose.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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