Skip to content

Commit

Permalink
Fixed the bug in Docker deployment method to QuickStart guide for Ver…
Browse files Browse the repository at this point in the history
…sion 4.x (#651)

* Fixed the echo statement for Windows & Rename the file

* Fixed the bug in Docker deployment method to QuickStart guide for Version 4.x
  • Loading branch information
kaxiya1021 authored May 30, 2024
1 parent e7e1e50 commit 97fabe9
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ import TabItem from '@theme/TabItem';
<TabItem value="Linux" label="Linux" default >

```code
# 配置 broker 的 IP 地址
echo brokerIP1=127.0.0.1>broker.conf
# 配置 Broker 的 IP 地址
echo "brokerIP1=127.0.0.1" >broker.conf
# 启动Broker
# 启动 Broker
docker run -d \
--name rmqbroker \
--net rocketmq \
Expand All @@ -68,15 +68,15 @@ docker run -d \
apache/rocketmq:4.9.6 sh mqbroker \
-c /home/rocketmq/rocketmq-4.9.6/conf/broker.conf
# 验证Broker是否启动成功
# 验证 Broker 是否启动成功
docker logs rmqbroker
```
</TabItem>
<TabItem value="Windows" label="Windows">

```code
# 配置 broker 的 IP 地址
echo brokerIP1=127.0.0.1>broker.conf
# 配置 Broker 的 IP 地址
echo "brokerIP1=127.0.0.1" >broker.conf
# 启动 Broker
docker run -d ^
Expand Down

0 comments on commit 97fabe9

Please sign in to comment.