thanhbv200585 commented on code in PR #1651: URL: https://github.com/apache/james-project/pull/1651#discussion_r1297064449
########## server/apps/distributed-app/docker-compose-with-pulsar.yml: ########## @@ -0,0 +1,97 @@ +version: '3' + +services: + + james: + depends_on: + cassandra: + condition: service_healthy + opensearch: + condition: service_started + tika: + condition: service_started + rabbitmq: + condition: service_started + s3: + condition: service_started + pulsar: + condition: service_started + image: apache/james:distributed-latest + container_name: james + hostname: james.local + command: + - --generate-keystore + networks: + - james + ports: + - "80:80" + - "25:25" + - "110:110" + - "143:143" + - "465:465" + - "587:587" + - "993:993" + - "8000:8000" + volumes: + - ./sample-configuration/pulsar.properties:/root/conf/pulsar.properties + - ./sample-configuration/keystore:/root/conf/keystore + + opensearch: + image: opensearchproject/opensearch:2.1.0 + environment: + - discovery.type=single-node + - DISABLE_INSTALL_DEMO_CONFIG=true + - DISABLE_SECURITY_PLUGIN=true + networks: + james: + aliases: + - elasticsearch Review Comment: Can u explain why? I see in docker-compose.yml, the value is also elasticsearch -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
