You are here

docker-compose.yml in Convert Media Tags to Markup 2.x

Same filename and directory in other branches
  1. 8 docker-compose.yml

File

docker-compose.yml
View source
  1. ---
  2. version: '3'
  3. services:
  4. drupal:
  5. image: dcycle/drupal:8drush
  6. volumes:
  7. - ".:/var/www/html/modules/custom/convert_media_tags_to_markup"
  8. - "./docker-resources:/docker-resources"
  9. ports:
  10. - "80"
  11. links:
  12. - mysql:mysql
  13. working_dir: /var/www/html/modules/custom/convert_media_tags_to_markup
  14. # Database server
  15. mysql:
  16. image: mysql:5
  17. environment:
  18. MYSQL_DATABASE: drupal
  19. MYSQL_ROOT_PASSWORD: drupal
  20. MYSQL_ALLOW_EMPTY_PASSWORD: 'no'