Skip to content

Commit

Permalink
Remove $ from Docker getting started IP address (hazelcast#1082)
Browse files Browse the repository at this point in the history
This is the only reference to `$<host_ip>`, everywhere else uses `<host_ip>`.
The `$` shouldn't be included in the command, otherwise it'll break.
  • Loading branch information
JackPGreen authored Apr 16, 2024
1 parent cdc7cd1 commit cb8437d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/modules/getting-started/pages/get-started-docker.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Replace the `<host_ip>` placeholder with the IP address of your Docker host.
+
[source,shell,subs="attributes+"]
----
docker run --network hazelcast-network -it --rm hazelcast/hazelcast:{full-version} hz-cli --targets hello-world@$<host_ip> sql
docker run --network hazelcast-network -it --rm hazelcast/hazelcast:{full-version} hz-cli --targets hello-world@<host_ip> sql
----
+
The `--targets` parameter tells the SQL shell to connect to the member at the given IP address in a cluster called `hello-world`.
Expand Down

0 comments on commit cb8437d

Please sign in to comment.