From f6984c7a5e2958437c0d6952b3bfb4bbe1a5a886 Mon Sep 17 00:00:00 2001 From: Rafal Leszko Date: Tue, 19 Jun 2018 09:13:09 +0200 Subject: [PATCH] Fix typo in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a03b7926..05a7fa9b 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,8 @@ To run two Hazelcast nodes with Management Center, use the following commands. ``` $ docker run -p 8080:8080 --name mancenter hazelcast/management-center -$ docker run -p 5701:5701 -e HZ_LICENSE_KEY= -e MANCENTER_URL="http://mancenter:8080/hazelcast-mancenter" -e JAVA_OPTS="-Dhazelcast.local.publicAddress=192.168.1.1:5701" --link mancenter hazelcast/hazelcast-enterprise -$ docker run -p 5702:5701 -e HZ_LICENSE_KEY= -e MANCENTER_URL="http://mancenter:8080/hazelcast-mancenter" -e JAVA_OPTS="-Dhazelcast.local.publicAddress=192.168.1.1:5702" --link mancenter hazelcast/hazelcast-enterprise +$ docker run -p 5701:5701 -e HZ_LICENSE_KEY= -e MANCENTER_URL="http://mancenter:8080/hazelcast-mancenter" -e JAVA_OPTS="-Dhazelcast.local.publicAddress=:5701" --link mancenter hazelcast/hazelcast-enterprise +$ docker run -p 5702:5701 -e HZ_LICENSE_KEY= -e MANCENTER_URL="http://mancenter:8080/hazelcast-mancenter" -e JAVA_OPTS="-Dhazelcast.local.publicAddress=:5702" --link mancenter hazelcast/hazelcast-enterprise ``` Note that the `MANCENTER_URL` environment variable defines the address of the Management Center application. In this case, it is available at `http://mancenter:8080/hazelcast-mancenter`.