Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4. mariadb:
  5. image: 'bitnami/mariadb:latest'
  6. environment:
  7. - MARIADB_USER=bn_testlink
  8. - MARIADB_DATABASE=bitnami_testlink
  9. - ALLOW_EMPTY_PASSWORD=yes
  10. volumes:
  11. - 'mariadb_data:/bitnami'
  12. testlink:
  13. image: 'bitnami/testlink:latest'
  14. environment:
  15. - MARIADB_HOST=mariadb
  16. - MARIADB_PORT_NUMBER=3306
  17. - TESTLINK_DATABASE_USER=bn_testlink
  18. - TESTLINK_DATABASE_NAME=bitnami_testlink
  19. - ALLOW_EMPTY_PASSWORD=yes
  20. labels:
  21. kompose.service.type: nodeport
  22. ports:
  23. - '5001:80'
  24. - '5443:443'
  25. volumes:
  26. - 'testlink_data:/bitnami'
  27. depends_on:
  28. - mariadb
  29. environment:
  30. - TESTLINK_USERNAME=admin
  31. - TESTLINK_PASSWORD=Mediamotive2017!
  32. - TESTLINK_EMAIL=admin@example.com
  33. - SMTP_ENABLE=true
  34. - SMTP_HOST=smtp.gmail.com
  35. - SMTP_PORT=587
  36. - SMTP_USER=netcom.research@gmail.com
  37. - SMTP_PASSWORD=Mediamotive2017!
  38. - SMTP_CONNECTION_MODE=tls
  39.  
  40. volumes:
  41. mariadb_data:
  42. driver: local
  43. testlink_data:
  44. driver: local
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement