Skip to content

Commit c1e74f9

Browse files
committed
Use 3.9 Docker image in documentation
1 parent dff9143 commit c1e74f9

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

src/docs/asciidoc/performance-tool.adoc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ this is perfect for experimenting locally.
4848
.Running the broker and performance tool with the host network driver
4949
----
5050
# run the broker
51-
docker run -it --rm --name rabbitmq --network host rabbitmq:3.9-rc
51+
docker run -it --rm --name rabbitmq --network host rabbitmq:3.9
5252
# open another terminal and enable the stream plugin
5353
docker exec rabbitmq rabbitmq-plugins enable rabbitmq_stream
5454
# run the performance tool
@@ -73,9 +73,7 @@ can be done by defining a network and running the containers in this network.
7373
# create a network
7474
docker network create stream-perf-test
7575
# run the broker
76-
docker run -it --rm --network stream-perf-test --name rabbitmq \
77-
-e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbit loopback_users "none"' \
78-
rabbitmq:3.9-rc
76+
docker run -it --rm --network stream-perf-test --name rabbitmq rabbitmq:3.9
7977
# open another terminal and enable the stream plugin
8078
docker exec rabbitmq rabbitmq-plugins enable rabbitmq_stream
8179
# run the performance tool

src/docs/asciidoc/setup.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ The following command creates a one-time Docker container to run RabbitMQ:
2626
.Running the stream plugin with Docker
2727
----
2828
docker run -it --rm --name rabbitmq -p 5552:5552 \
29-
-e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbitmq_stream advertised_host localhost -rabbit loopback_users "none"' \
30-
rabbitmq:3.9-rc
29+
-e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbitmq_stream advertised_host localhost' \
30+
rabbitmq:3.9
3131
----
3232

3333
The previous command exposes only the stream port (5552), you can expose
@@ -36,8 +36,8 @@ ports for other protocols:
3636
.Exposing the AMQP 0.9.1 and management ports:
3737
----
3838
docker run -it --rm --name rabbitmq -p 5552:5552 -p 5672:5672 -p 15672:15672 \
39-
-e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbitmq_stream advertised_host localhost -rabbit loopback_users "none"' \
40-
rabbitmq:3.9-rc-management
39+
-e RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS='-rabbitmq_stream advertised_host localhost' \
40+
rabbitmq:3.9-management
4141
----
4242

4343
Refer to the official https://hub.docker.com/_/rabbitmq[RabbitMQ Docker image web page]
@@ -58,7 +58,7 @@ this is perfect for experimenting locally.
5858

5959
.Running RabbitMQ Stream with the host network driver
6060
----
61-
docker run -it --rm --name rabbitmq --network host rabbitmq:3.9-rc
61+
docker run -it --rm --name rabbitmq --network host rabbitmq:3.9
6262
----
6363

6464
Once the container is started, **the stream plugin must be enabled**:

0 commit comments

Comments
 (0)