Advertisement
Guest User

Untitled

a guest
May 31st, 2017
628
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. nexus:
  2. build: ./nexus
  3. ports:
  4. - "18081:8081"
  5.  
  6. jenkins:
  7. build: ./jenkins
  8. ports:
  9. - "18080:8080"
  10. links:
  11. - nexus:nexus
  12. - gitlab:gitlab
  13. - sonar:sonar
  14. - selhub:hub
  15.  
  16. sonar:
  17. build: ./sonar
  18. ports:
  19. - "19000:9000"
  20. - "5432:5432"
  21. environment:
  22. - SONARQUBE_JDBC_URL=jdbc:postgresql://localhost:5432/sonar
  23. db:
  24. image: postgres
  25. net: container:sonar
  26. environment:
  27. - POSTGRES_USER=sonar
  28. - POSTGRES_PASSWORD=sonar
  29.  
  30. selhub:
  31. image: selenium/hub
  32. ports:
  33. - 4444:4444
  34.  
  35. nodeff:
  36. image: selenium/node-firefox-debug
  37. ports:
  38. - 5900
  39. links:
  40. - selhub:hub
  41.  
  42. nodechrome:
  43. image: selenium/node-chrome-debug
  44. ports:
  45. - 5900
  46. links:
  47. - selhub:hub
  48.  
  49. postgresql:
  50. image: sameersbn/postgresql:9.4-3
  51. environment:
  52. - DB_USER=gitlab
  53. - DB_PASS=password
  54. - DB_NAME=gitlabhq_production
  55. volumes:
  56. - /srv/docker/gitlab/postgresql:/var/lib/postgresql
  57. gitlab:
  58. image: sameersbn/gitlab:8.0.3
  59. links:
  60. - redis:redisio
  61. - postgresql:postgresql
  62. ports:
  63. - "10080:80"
  64. - "10022:22"
  65. environment:
  66. - TZ=Europe/Berlin
  67. - GITLAB_TIMEZONE=Berlin
  68.  
  69. - GITLAB_SECRETS_DB_KEY_BASE=long-and-random-alphanumeric-string
  70.  
  71. - GITLAB_HOST=localhost
  72. - GITLAB_PORT=10080
  73. - GITLAB_SSH_PORT=10022
  74.  
  75. - GITLAB_NOTIFY_ON_BROKEN_BUILDS=true
  76. - GITLAB_NOTIFY_PUSHER=false
  77.  
  78. - GITLAB_EMAIL=notifications@example.com
  79. - GITLAB_EMAIL_REPLY_TO=noreply@example.com
  80. - GITLAB_INCOMING_EMAIL_ADDRESS=reply@example.com
  81.  
  82. - GITLAB_BACKUPS=daily
  83. - GITLAB_BACKUP_TIME=01:00
  84.  
  85. - SMTP_ENABLED=false
  86. - SMTP_DOMAIN=www.example.com
  87. - SMTP_HOST=smtp.gmail.com
  88. - SMTP_PORT=587
  89. - SMTP_USER=mailer@example.com
  90. - SMTP_PASS=password
  91. - SMTP_STARTTLS=true
  92. - SMTP_AUTHENTICATION=login
  93.  
  94. - IMAP_ENABLED=false
  95. - IMAP_HOST=imap.gmail.com
  96. - IMAP_PORT=993
  97. - IMAP_USER=mailer@example.com
  98. - IMAP_PASS=password
  99. - IMAP_SSL=true
  100. - IMAP_STARTTLS=false
  101. volumes:
  102. - /srv/docker/gitlab/gitlab:/home/git/data
  103. redis:
  104. image: sameersbn/redis:latest
  105. volumes:
  106. - /srv/docker/gitlab/redis:/var/lib/redis
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement