From 19de4f5841dff5dd003aa9ef1b877d306fcfaaa8 Mon Sep 17 00:00:00 2001 From: Colin Sullivan Date: Sun, 28 Feb 2021 16:58:09 -0700 Subject: [PATCH] use natsio/nats-box Signed-off-by: Colin Sullivan --- jetstream/getting_started/using_docker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jetstream/getting_started/using_docker.md b/jetstream/getting_started/using_docker.md index f46a7fa..f36feef 100644 --- a/jetstream/getting_started/using_docker.md +++ b/jetstream/getting_started/using_docker.md @@ -1,6 +1,6 @@ # Using Docker -The `synadia/nats-box:latest` docker image contains the `nats` utility this guide covers. +The `natsio/nats-box:latest` docker image contains the `nats` utility this guide covers. In one window start a JetStream enabled nats server: @@ -11,7 +11,7 @@ $ docker run --network host -p 4222:4222 nats -js And in another log into the utilities: ``` -$ docker run -ti --network host synadia/nats-box +$ docker run -ti --network host natsio/nats-box ``` This shell has the `nats` utility and all other NATS cli tools used in the rest of this guide.