PragmaTwice commented on code in PR #49:
URL:
https://github.com/apache/incubator-kvrocks-website/pull/49#discussion_r1098333455
##########
community/create-a-release.md:
##########
@@ -202,6 +202,22 @@ svn status # check svn status
svn commit -m "Prepare for ${release_version}" # commit to SVN remote
server
```
+## Build and push docker images
+
+:::info
+
+docker is required for this step.
+
+:::
+
+First, use `docker login` to login your own DockerHub account.
+
+Then, build and push docker images to DockerHub:
+
+```shell
+docker buildx build --platform linux/amd64,linux/arm64 --tag
${your_dockerhub_username}/kvrocks:${release_version} --tag
${your_dockerhub_username}/kvrocks:latest . --output=type=registry
Review Comment:
```suggestion
docker buildx build --platform linux/amd64,linux/arm64 --tag
${your_dockerhub_username}/kvrocks:${release_version} --tag
${your_dockerhub_username}/kvrocks:latest . --output-type=registry
```
--
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]