shink commented on a change in pull request #2511:
URL: https://github.com/apache/incubator-inlong/pull/2511#discussion_r806815161
##########
File path: docker/docker-compose/docker-compose.yml
##########
@@ -33,6 +33,19 @@ services:
- ./mysql:/var/lib/mysql
- ./sql:/docker-entrypoint-initdb.d
+ pulsar:
+ image: apachepulsar/pulsar
+ container_name: pulsar
+ environment:
+ - PULSAR_MEM="-Xms256m -Xmx512m -XX:MaxDirectMemorySize=1g"
+ ports:
+ - "6650:6650"
+ - "8181:8080"
Review comment:
@dockerzhang Is it OK to expose port 8181 on the machine?
##########
File path: docker/docker-compose/docker-compose.yml
##########
@@ -123,4 +136,20 @@ services:
ports:
- "8008:8008"
volumes:
- - ./collect-data:/data/collect-data
\ No newline at end of file
+ - ./collect-data:/data/collect-data
+
+ audit:
+ image: inlong/audit:latest
+ container_name: audit
+ depends_on:
+ mysql:
+ condition: service_healthy
Review comment:
@dockerzhang BTW, version 3 of Docker Compose no longer supports the
`condition` form of `depends_on`, should we adapt it?
--
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]