Guest User

Untitled

a guest
Apr 23rd, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. version: '3'
  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. - '/opt/tlp-persistance/mariadb_data:/bitnami'
  12.  
  13.  
  14. testlink:
  15. image: 'bitnami/testlink:latest'
  16. environment:
  17. - TESTLINK_USERNAME=admin
  18. - TESTLINK_PASSWORD=tlp
  19. - MARIADB_HOST=mariadb
  20. - MARIADB_PORT_NUMBER=3306
  21. - TESTLINK_DATABASE_USER=bn_testlink
  22. - TESTLINK_DATABASE_NAME=bitnami_testlink
  23. - ALLOW_EMPTY_PASSWORD=yes
  24. labels:
  25. kompose.service.type: nodeport
  26. ports:
  27. - '80:80'
  28. - '443:443'
  29. volumes:
  30. - '/opt/tlp-persistance/testlink_data:/bitnami'
  31. depends_on:
  32. - mariadb
  33.  
  34. tlp:
  35. image: 'marcocab/testlink-plugin-rest:stable'
  36. ports:
  37. - '8080:8080'
  38.  
  39. tlp-gui:
  40. image: 'marcocab/testlink-plugin-gui:stable'
  41. ports:
  42. - '4200:4200'
  43.  
  44. volumes:
  45. mariadb_data:
  46. driver: local
  47. testlink_data:
  48. driver: local
Add Comment
Please, Sign In to add comment