From 1f90800c0dc244563d52607f0999eb5029a4097a Mon Sep 17 00:00:00 2001 From: Julien Jakubowski Date: Mon, 11 Sep 2023 17:07:29 +0200 Subject: [PATCH] remove $ signs from the command lines in getting-started.md It's easier to copy-paste command lines without the $ sign. --- docs/getting-started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index db5236ac..c89a548d 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -7,13 +7,13 @@ Oxia is available in form of a Docker image ```shell -$ docker pull streamnative/oxia:main +docker pull streamnative/oxia:main ``` ### Building from source ```shell -$ make +make ``` This will create the binary file on `bin/oxia`. @@ -25,7 +25,7 @@ It provides a full-fledged Oxia service with a `default` namespace. Being a sing getting replicated. ```shell -$ oxia standalone +oxia standalone ``` Output will be something like: @@ -45,7 +45,7 @@ The service is now ready at `localhost:6648` address. Using docker this can be done with: ```shell -$ docker run -p 6648:6648 streamnative/oxia:main oxia standalone +docker run -p 6648:6648 streamnative/oxia:main oxia standalone ``` ## Interacting by CLI