Guest User

Untitled

a guest
Mar 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. version: '2'
  2. services:
  3. sourcegraph:
  4. image: sourcegraph/server
  5. restart: always
  6. volumes:
  7. - ./config:/etc/sourcegraph
  8. - ./data:/var/opt/sourcegraph
  9. ports:
  10. - 7080:7080
  11. networks:
  12. - lsp
  13. go:
  14. image: sourcegraph/codeintel-go
  15. container_name: go
  16. environment:
  17. - "SRC_GIT_SERVERS='sourcegraph:3178'"
  18. restart: always
  19. networks:
  20. - lsp
  21. typescript:
  22. image: sourcegraph/codeintel-typescript
  23. container_name: typescript
  24. restart: always
  25. networks:
  26. - lsp
  27. python:
  28. image: sourcegraph/codeintel-python
  29. container_name: python
  30. restart: always
  31. networks:
  32. - lsp
  33. php:
  34. image: sourcegraph/codeintel-php
  35. container_name: php
  36. restart: always
  37. networks:
  38. - lsp
  39. java:
  40. image: sourcegraph/codeintel-java
  41. container_name: java
  42. restart: always
  43. networks:
  44. - lsp
  45. networks:
  46. lsp:
  47. external: false
Add Comment
Please, Sign In to add comment