kezhenxu94 commented on code in PR #10052: URL: https://github.com/apache/dolphinscheduler/pull/10052#discussion_r874438445
########## docs/docs/en/development/development-environment-setup.md: ########## @@ -23,6 +23,58 @@ git clone [email protected]:apache/dolphinscheduler.git ii. Run `mvn clean install -Prelease -Dmaven.test.skip=true` +## Docker image build + +DolphinScheduler will release new Docker images after it released, you could find them in [Docker Hub](https://hub.docker.com/search?q=DolphinScheduler). + +* If you want to modify DolphinScheduler source code, and build Docker images locally, you can be run when finished the modification +```shell +cd dolphinscheduler +./mvnw -B clean package \ + -Dmaven.test.skip \ + -Dmaven.javadoc.skip \ + -Dmaven.checkstyle.skip \ + -Ddocker.tag=<TAG> \ + -Pdocker,release +``` + +When the command is finished you could find them by command `docker imaegs`. + +* If you want to modify DolphinScheduler source code, build and push Docker images to your registry <HUB_URL>,you can be run when finished the modification Review Comment: ```suggestion * If you want to modify DolphinScheduler source code, build and push Docker images to your registry <HUB_URL>,you can run when finished the modification ``` -- 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]
