From eafc37aa68b9c24b2d911cf2423626deb08ce5ca Mon Sep 17 00:00:00 2001 From: Matthieu Evrin <6630779+lekaf974@users.noreply.github.com> Date: Wed, 28 Feb 2024 23:39:18 -0500 Subject: [PATCH] Update docker image consul (deprecated) by hashicorp/consul (#5793) Signed-off-by: mevrin --- docs/getting-started/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/_index.md b/docs/getting-started/_index.md index 05b27bea28..2816a228d5 100644 --- a/docs/getting-started/_index.md +++ b/docs/getting-started/_index.md @@ -79,7 +79,7 @@ Next we're going to show how you can run a scale out Cortex cluster using Docker ```sh $ make ./cmd/cortex/.uptodate $ docker network create cortex -$ docker run -d --name=consul --network=cortex -e CONSUL_BIND_INTERFACE=eth0 consul +$ docker run -d --name=consul --network=cortex -e CONSUL_BIND_INTERFACE=eth0 hashicorp/consul ``` Next we'll run a couple of Cortex instances pointed at that Consul. You'll note the Cortex configuration can be specified in either a config file or overridden on the command line. See [the arguments documentation](../configuration/arguments.md) for more information about Cortex configuration options. @@ -142,7 +142,7 @@ First, create a network and run a new Consul and Grafana: ```sh $ docker network create cortex -$ docker run -d --name=consul --network=cortex -e CONSUL_BIND_INTERFACE=eth0 consul +$ docker run -d --name=consul --network=cortex -e CONSUL_BIND_INTERFACE=eth0 hashicorp/consul $ docker run -d --name=grafana --network=cortex -p 3000:3000 grafana/grafana ```