Guest User

docker-compose.yaml

a guest
Jul 13th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. version: "2"
  2. services:
  3. coredb:
  4. image: 822924222578.dkr.ecr.ap-southeast-2.amazonaws.com/core-db:latest
  5. ports:
  6. - "5432:5432"
  7. eventdb:
  8. image: 822924222578.dkr.ecr.ap-southeast-2.amazonaws.com/event-db:latest
  9. ports:
  10. - "5532:5432"
  11. local-aws:
  12. image: 822924222578.dkr.ecr.ap-southeast-2.amazonaws.com/local-aws:latest
  13. ports:
  14. - "4567-4578:4567-4578"
  15. - "9080:8080"
  16. environment:
  17. - HOSTNAME=local-aws
  18. core-api:
  19. image: core-api:latest
  20. depends_on:
  21. - coredb
  22. - local-aws
  23. ports:
  24. - "8070:8070"
  25. - "5005:5005"
  26. event-api:
  27. image: event-api:latest
  28. depends_on:
  29. - eventdb
  30. - local-aws
  31. ports:
  32. - "8100:8100"
  33. - "5006:5005"
  34. graphql:
  35. image: graphql:latest
  36. depends_on:
  37. - coredb
  38. ports:
  39. - "8090:8070"
  40. - "5007:5005"
  41. rubix:
  42. image: rubix:latest
  43. depends_on:
  44. - local-aws
  45. - core-api
  46. ports:
  47. - "8181:8181"
  48. - "5008:5005"
  49. logging:
  50. driver: "json-file"
  51. options:
  52. max-size: '10m'
  53. max-file: '20'
  54. tty: true
  55. fe-admin-console:
  56. image: fe-admin-console:latest
  57. ports:
  58. - "9000:9000"
  59. fe-servicepoint:
  60. image: fe-servicepoint:latest
  61. ports:
  62. - "9001:9001"
  63. widget:
  64. image: widget:latest
  65. ports:
  66. - "9002:9002"
  67. local-dev-proxy:
  68. image: local-dev-proxy:latest
  69. depends_on:
  70. - core-api
  71. - event-api
  72. - rubix
  73. - graphql
  74. ports:
  75. - "9090:9090"
Add Comment
Please, Sign In to add comment