You are here

docker-compose.yml in CKEditor Non-breaking space Plugin ( ) 8.2

File

docker-compose.yml
View source
  1. version: '3.6'
  2. services:
  3. drupal:
  4. build: .
  5. depends_on:
  6. - db
  7. ports:
  8. - 8888:80
  9. volumes:
  10. # Mount the module in the proper contrib module directory.
  11. - .:/var/www/html/modules/contrib/nbsp
  12. restart: always
  13. db:
  14. image: mariadb:10.3.7
  15. environment:
  16. MYSQL_USER: drupal
  17. MYSQL_PASSWORD: drupal
  18. MYSQL_DATABASE: drupal
  19. MYSQL_ROOT_PASSWORD: root
  20. restart: always
  21. chrome:
  22. image: drupalci/webdriver-chromedriver:production
  23. depends_on:
  24. - drupal
  25. ulimits:
  26. core:
  27. soft: -1
  28. hard: -1
  29. cap_add:
  30. - SYS_ADMIN
  31. ports:
  32. - "4444:4444"
  33. - "9515:9515"
  34. volumes:
  35. - /dev/shm:/dev/shm
  36. entrypoint:
  37. - chromedriver
  38. - "--no-sandbox"
  39. - "--log-path=/tmp/chromedriver.log"
  40. - "--verbose"
  41. - "--whitelisted-ips="