From 9f3501c477b9e0787e3ea539947d1fcdc68b495b Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Wed, 29 Mar 2023 14:01:03 -0700 Subject: [PATCH] Update daprdocs/content/en/reference/components-reference/supported-state-stores/setup-etcd.md Signed-off-by: Mark Fussell --- .../supported-state-stores/setup-etcd.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/reference/components-reference/supported-state-stores/setup-etcd.md b/daprdocs/content/en/reference/components-reference/supported-state-stores/setup-etcd.md index 7d3ae5400..a36a2b9b7 100644 --- a/daprdocs/content/en/reference/components-reference/supported-state-stores/setup-etcd.md +++ b/daprdocs/content/en/reference/components-reference/supported-state-stores/setup-etcd.md @@ -66,7 +66,12 @@ services: - "12379:2379" command: etcd --listen-client-urls http://0.0.0.0:2379 --advertise-client-urls http://0.0.0.0:2379``` ``` -You can then interact with the server using `localhost:12379`. +Save the docker-compose.yml file and run the following command to start the Etcd server: + +`docker-compose up -d` + +This starts the Etcd server in the background using the expose the default Etcd port of `2379`. You can then interact with the server using the `etcdctl` command-line client on `localhost:12379`. For example + {{% /codetab %}}