You are here

docker-compose.yml in Convert Media Tags to Markup 8

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

File

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