This is an automated email from the ASF dual-hosted git repository.
caigy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-docker.git
The following commit(s) were added to refs/heads/master by this push:
new 26c9937 apacherocketmq rename to apache (#61)
26c9937 is described below
commit 26c9937c3feb31aabb68615b7bcb738993a50ed1
Author: zhoubo <[email protected]>
AuthorDate: Tue Sep 20 10:56:54 2022 +0800
apacherocketmq rename to apache (#61)
Co-authored-by: yuntian.zb <[email protected]>
---
README.md | 16 ++++++++--------
image-build/build-image.sh | 4 ++--
image-build/update.sh | 2 +-
product/start-broker.sh | 2 +-
product/start-ns.sh | 2 +-
5 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/README.md b/README.md
index b482244..791d829 100644
--- a/README.md
+++ b/README.md
@@ -2,10 +2,10 @@
[](https://www.apache.org/licenses/LICENSE-2.0.html)
[](http://isitmaintained.com/project/apache/rocketmq-docker
"Average time to resolve an issue")
[](http://isitmaintained.com/project/apache/rocketmq-docker
"Percentage of issues still open")
-
-[](https://hub.docker.com/repository/docker/apache/rocketmq)
+
+[](https://hub.docker.com/repository/docker/apache/rocketmq)
[](https://hub.docker.com/r/apache/rocketmq/tags)
-
+

This is the Git repo of the Docker Image for Apache RocketMQ and official
docker hub repo: https://hub.docker.com/repository/docker/apache/rocketmq
@@ -138,7 +138,7 @@ cd image-build
./update.sh
```
-This script will get the latest release version of RocketMQ and build the
docker images based on ```alpine``` and ```centos``` respectively, then push
the new images to the current official repository ```apacherocketmq/rocketmq```.
+This script will get the latest release version of RocketMQ and build the
docker images based on ```alpine``` and ```centos``` respectively, then push
the new images to the current official repository ```apache/rocketmq```.
### How to verify RocketMQ works well
@@ -209,7 +209,7 @@ And put the customized `broker.conf` file at a specific
path, like "`pwd`/data/b
Then we can modify the `play-docker.sh` and volume this file to the broker
container when it starts. For example:
```
-docker run -d -p 10911:10911 -p 10909:10909 -v
`pwd`/data/broker/logs:/root/logs -v `pwd`/data/broker/store:/root/store -v
`pwd`/data/broker/conf/broker.conf:/home/rocketmq/rocketmq-4.5.0/conf/broker.conf
--name rmqbroker --link rmqnamesrv:namesrv -e "NAMESRV_ADDR=namesrv:9876"
apacherocketmq/rocketmq:4.5.0 sh mqbroker -c
/home/rocketmq/rocketmq-4.5.0/conf/broker.conf
+docker run -d -p 10911:10911 -p 10909:10909 -v
`pwd`/data/broker/logs:/root/logs -v `pwd`/data/broker/store:/root/store -v
`pwd`/data/broker/conf/broker.conf:/home/rocketmq/rocketmq-4.5.0/conf/broker.conf
--name rmqbroker --link rmqnamesrv:namesrv -e "NAMESRV_ADDR=namesrv:9876"
apache/rocketmq:4.5.0 sh mqbroker -c
/home/rocketmq/rocketmq-4.5.0/conf/broker.conf
```
@@ -217,7 +217,7 @@ Finally we can find the customized `broker.conf` has been
used in the broker con
```
MacBook-Pro:4.5.0 huan$ docker ps |grep mqbroker
-a32c67aed6dd apacherocketmq/rocketmq:4.5.0 "sh mqbroker" 20
minutes ago Up 20 minutes 0.0.0.0:10909->10909/tcp, 9876/tcp,
0.0.0.0:10911->10911/tcp rmqbroker
+a32c67aed6dd apache/rocketmq:4.5.0 "sh mqbroker" 20 minutes ago
Up 20 minutes 0.0.0.0:10909->10909/tcp, 9876/tcp,
0.0.0.0:10911->10911/tcp rmqbroker
MacBook-Pro:4.5.0 $ docker exec -it a32c67aed6dd cat
/home/rocketmq/rocketmq-4.5.0/conf/broker.conf
brokerClusterName = DefaultCluster
brokerName = broker-a
@@ -236,7 +236,7 @@ In the case of docker-compose, change the
docker-compose.yml like following:
version: '2'
services:
namesrv:
- image: apacherocketmq/rocketmq:4.5.0
+ image: apache/rocketmq:4.5.0
container_name: rmqnamesrv
ports:
- 9876:9876
@@ -244,7 +244,7 @@ services:
- ./data/namesrv/logs:/home/rocketmq/logs
command: sh mqnamesrv
broker:
- image: apacherocketmq/rocketmq:4.5.0
+ image: apache/rocketmq:4.5.0
container_name: rmqbroker
ports:
- 10909:10909
diff --git a/image-build/build-image.sh b/image-build/build-image.sh
index 3736039..3fcbd5b 100755
--- a/image-build/build-image.sh
+++ b/image-build/build-image.sh
@@ -39,10 +39,10 @@ checkVersion $ROCKETMQ_VERSION
# Build rocketmq
case "${BASE_IMAGE}" in
alpine)
- docker build --no-cache -f Dockerfile-alpine -t
apacherocketmq/rocketmq:${ROCKETMQ_VERSION}-alpine --build-arg
version=${ROCKETMQ_VERSION} .
+ docker build --no-cache -f Dockerfile-alpine -t
apache/rocketmq:${ROCKETMQ_VERSION}-alpine --build-arg
version=${ROCKETMQ_VERSION} .
;;
centos)
- docker build --no-cache -f Dockerfile-centos -t
apacherocketmq/rocketmq:${ROCKETMQ_VERSION} --build-arg
version=${ROCKETMQ_VERSION} .
+ docker build --no-cache -f Dockerfile-centos -t
apache/rocketmq:${ROCKETMQ_VERSION} --build-arg version=${ROCKETMQ_VERSION} .
;;
*)
echo "${BASE_IMAGE} is not supported, supported base images: centos,
alpine"
diff --git a/image-build/update.sh b/image-build/update.sh
index 0678125..1f9d5d3 100755
--- a/image-build/update.sh
+++ b/image-build/update.sh
@@ -45,5 +45,5 @@ do
else
TAG=${LATEST_VERSION}-${baseImage}
fi
- docker push apacherocketmq/rocketmq:${TAG}
+ docker push apache/rocketmq:${TAG}
done
diff --git a/product/start-broker.sh b/product/start-broker.sh
index 169e037..379f866 100644
--- a/product/start-broker.sh
+++ b/product/start-broker.sh
@@ -49,7 +49,7 @@ start_broker()
--name rmqbroker \
-e "NAMESRV_ADDR=${NAMESRV_ADDR}" \
-p 10911:10911 -p 10912:10912 -p 10909:10909 \
- apacherocketmq/rocketmq:${ROCKETMQ_VERSION}${TAG_SUFFIX} \
+ apache/rocketmq:${ROCKETMQ_VERSION}${TAG_SUFFIX} \
sh mqbroker -c /home/rocketmq/conf/${CONF_FILE}
}
diff --git a/product/start-ns.sh b/product/start-ns.sh
index cb82585..8576058 100644
--- a/product/start-ns.sh
+++ b/product/start-ns.sh
@@ -37,7 +37,7 @@ start_namesrv()
docker run -d -v ${DATA_HOME}/logs:/home/rocketmq/logs \
--name rmqnamesrv \
-p 9876:9876 \
- apacherocketmq/rocketmq:${ROCKETMQ_VERSION}${TAG_SUFFIX} \
+ apache/rocketmq:${ROCKETMQ_VERSION}${TAG_SUFFIX} \
sh mqnamesrv
}