You are here

codeship-services.yml in Admin User Language 8

File

codeship-services.yml
View source
  1. # Codeship specific docker compose file
  2. # This should be virtually the same on every project, although you may need to change the node version for your project
  3. # NEVER use this compose file for production builds
  4. # Caching is done against the develop branch to help speed up CI tests
  5. version: "2"
  6. services:
  7. app:
  8. image: pwcsexperiencecenter/drupal-module-tester:latest
  9. cached: true
  10. links:
  11. - mariadb
  12. ports:
  13. - "8000"
  14. environment:
  15. - TEST_MODULE=admin_user_language
  16. volumes:
  17. - ./:/opt/app-root/test
  18. mariadb:
  19. image: mariadb:latest
  20. cached: true
  21. ports:
  22. # Map this dynamically on the ci, as parallel builds require it
  23. - "3306"
  24. environment:
  25. - MYSQL_ROOT_PASSWORD=root
  26. - MYSQL_DATABASE=site
  27. - MYSQL_USER=dbuser
  28. - MYSQL_PASSWORD=dbpass