From 57d488f79ac56042cc3bd9110565f013b6065409 Mon Sep 17 00:00:00 2001 From: "Dr. Stefan Schimanski" Date: Mon, 6 Jul 2015 14:33:06 +0200 Subject: [PATCH] Fix invocation of quay.io etcd in mesos getting started guide --- docs/getting-started-guides/mesos.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/getting-started-guides/mesos.md b/docs/getting-started-guides/mesos.md index ba5bfee44d0..457cddaecb2 100644 --- a/docs/getting-started-guides/mesos.md +++ b/docs/getting-started-guides/mesos.md @@ -102,7 +102,10 @@ export KUBERNETES_MASTER=http://${KUBERNETES_MASTER_IP}:8888 Start etcd and verify that it is running: ```bash -sudo docker run -d --hostname $(uname -n) --name etcd -p 4001:4001 -p 7001:7001 quay.io/coreos/etcd:v2.0.12 +sudo docker run -d --hostname $(uname -n) --name etcd \ + -p 4001:4001 -p 7001:7001 quay.io/coreos/etcd:v2.0.12 \ + --listen-client-urls http://0.0.0.0:4001 \ + --advertise-client-urls http://${KUBERNETES_MASTER_IP}:4001 ``` ```console