Advertisement
Guest User

Untitled

a guest
Aug 31st, 2017
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. RSQ_HealthDB:
  2. image: postgres:9.4
  3. ports:
  4. - "5432:5432"
  5. environment:
  6. POSTGRES_PASSWORD: 1
  7. POSTGRES_USER: postgres
  8. POSTGRES_DB: rsq-health
  9.  
  10. RSQ_Health:
  11. image: rsqtechnologies/health:0.2.0
  12. ports:
  13. - "8080:8080"
  14. links:
  15. - RSQ_HealthDB
  16. environment:
  17. DATABASE_HOST: RSQ_HealthDB
  18. DATABASE_PORT: 5432
  19. DATABASE_NAME: rsq-health
  20. DATABASE_USERNAME: postgres
  21. DATABASE_PASSWORD: 1
  22. DATABASE_DDL: create-drop
  23.  
  24. RSQ_AuthorizationDB:
  25. image: postgres:9.4
  26. ports:
  27. - "5433:5432"
  28. environment:
  29. POSTGRES_PASSWORD: 1
  30. POSTGRES_USER: postgres
  31. POSTGRES_DB: rsq-authorization
  32.  
  33. RSQ_Authorization:
  34. image: rsqtechnologies/authorization:0.7.2
  35. ports:
  36. - "8081:8081"
  37. links:
  38. - RSQ_AuthorizationDB
  39. environment:
  40. RSQ_ID_PROTOCOL: http
  41. RSQ_ID_HOSTNAME: localhost
  42. RSQ_ID_PORT: 4444
  43. DATABASE_HOST: RSQ_AuthorizationDB
  44. DATABASE_PORT: 5432
  45. DATABASE_NAME: rsq-authorization
  46. DATABASE_USERNAME: postgres
  47. DATABASE_PASSWORD: 1
  48. DATABASE_DDL: create-drop
  49. MAIL_HOST: poczta.o2.pl
  50. MAIL_PASSWORD: mateusz123
  51. MAIL_USERNAME: testowymailer123@o2.pl
  52. MAIL_PERSONAL: RSQ ID
  53.  
  54. RSQ_ID_Login:
  55. image: rsqtechnologies/rsqid-login:1.5.0
  56. ports:
  57. - "4444:80"
  58.  
  59. hub:
  60. # https://hub.docker.com/r/selenium/hub/
  61. image: selenium/hub
  62. ports:
  63. - "5000:4444"
  64.  
  65. # firefox:
  66. #image: selenium/node-firefox # without vnc
  67. # image: selenium/node-firefox-debug # with vnc https://hub.docker.com/r/selenium/node-firefox-debug/
  68. # links:
  69. # - hub
  70. # ports:
  71. # - "4501:5900"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement