docker-compose.yml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. version: '2'
  2. services:
  3. # geoip:
  4. # restart: always
  5. # image: xxxxxxxx.dkr.ecr.us-east-1.amazonaws.com/contactrocket/geoip
  6. # ports:
  7. # - '0.0.0.0:8882:8000'
  8. # chatbot:
  9. # restart: always
  10. # image: xxxxxxxxxxxx.dkr.ecr.us-east-1.amazonaws.com/hushfling/chat
  11. # ports:
  12. # - '0.0.0.0:8069:80'
  13. elasticsearch:
  14. image: elasticsearch:5.1
  15. restart: always
  16. ports:
  17. - '9200:9200'
  18. match:
  19. restart: always
  20. image: pavlov/match
  21. links:
  22. - elasticsearch:elasticsearch
  23. environment:
  24. - "ELASTICSEARCH_URL=http://elasticsearch:9200"
  25. ports:
  26. - '0.0.0.0:8888:80'
  27. # detect:
  28. # image: beniz/deepdetect_cpu
  29. # restart: always
  30. # environment:
  31. # - "ELASTICSEARCH_URL=$ELASTICSEARCH_URL"
  32. # ports:
  33. # - '0.0.0.0:8883:8080'
  34. mood:
  35. restart: always
  36. image: anroots/sentiment
  37. ports:
  38. - '0.0.0.0:8880:8888'
  39. # face:
  40. # restart: always
  41. # image: bamos/openface
  42. # ports:
  43. # - '0.0.0.0:8000:8000'
  44. # - '0.0.0.0:9000:9000'
  45. nlp:
  46. restart: always
  47. image: jgontrum/spacyapi:en
  48. ports:
  49. - '0.0.0.0:5000:5000'
  50. # image:
  51. # restart: always
  52. # image: h2non/imaginary
  53. # ports:
  54. # - '0.0.0.0:9001:9000'
  55. # rabbitmq:
  56. # restart: always
  57. # image: tutum/rabbitmq
  58. # dns: ["8.8.8.8"]
  59. # environment:
  60. # - "RABBITMQ_PASS=password"
  61. #
  62. # strokewidthtransform:
  63. # restart: always
  64. # image: tleyden5iwx/open-ocr-preprocessor
  65. # volumes:
  66. # - ./scripts/:/opt/open-ocr/
  67. # dns: ["8.8.8.8"]
  68. # links:
  69. # - rabbitmq
  70. # command: "/opt/open-ocr/open-ocr-preprocessor -amqp_uri amqp://admin:password@rabbitmq/ -preprocessor stroke-width-transform"
  71. #
  72. # openocrworker:
  73. # restart: always
  74. # image: tleyden5iwx/open-ocr
  75. # volumes:
  76. # - ./scripts/:/opt/open-ocr/
  77. # dns: ["8.8.8.8"]
  78. # links:
  79. # - rabbitmq
  80. # command: "/opt/open-ocr/open-ocr-worker -amqp_uri amqp://admin:password@rabbitmq/"
  81. # openocr:
  82. # restart: always
  83. # image: tleyden5iwx/open-ocr
  84. # dns: ["8.8.8.8"]
  85. # volumes:
  86. # - ./scripts/:/opt/open-ocr/
  87. # links:
  88. # - rabbitmq
  89. # ports:
  90. # - "0.0.0.0:9292:9292"
  91. # command: "/opt/open-ocr/open-ocr-httpd -amqp_uri amqp://admin:password@rabbitmq/ -http_port 9292"
  92. volumes:
  93. elasticsearch: