Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove $ signs from the command lines in getting-started.md #373

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand All @@ -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:
Expand All @@ -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
Expand Down
Loading