Skip to content

Commit

Permalink
9072 no longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkleeman committed Jan 15, 2024
1 parent f5738ce commit eb1c196
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ After executing this curl request, you should see the discovered services and me
Run the Restate Docker container:

```shell
docker run --name restate_dev --rm -d -p 8080:8080 -p 9070-9072:9070-9072 docker.io/restatedev/restate:VAR::RESTATE_VERSION
docker run --name restate_dev --rm -d -p 8080:8080 -p 9070-9071:9070-9071 docker.io/restatedev/restate:VAR::RESTATE_VERSION
```

:::tip
Expand Down
2 changes: 1 addition & 1 deletion docs/restate/tracing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ docker run --name restate_dev --rm -d -e RESTATE_OBSERVABILITY__TRACING__ENDPOIN
<TabItem value="mac" label="macOS">

```shell
docker run --name restate_dev --rm -d -e RESTATE_OBSERVABILITY__TRACING__ENDPOINT=http://host.docker.internal:4317 -p 8080:8080 -p 9070-9072:9070-9072 docker.io/restatedev/restate:VAR::RESTATE_VERSION
docker run --name restate_dev --rm -d -e RESTATE_OBSERVABILITY__TRACING__ENDPOINT=http://host.docker.internal:4317 -p 8080:8080 -p 9070-9071:9070-9071 docker.io/restatedev/restate:VAR::RESTATE_VERSION
```

</TabItem>
Expand Down
2 changes: 1 addition & 1 deletion docs/services/deployment/lambda/lambda-typescript.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ docker run -e AWS_PROFILE -v ~/.aws/:/root/.aws --name restate_dev --rm -d --net
```
- On macOS:
```shell
docker run -e AWS_PROFILE -v ~/.aws/:/root/.aws --name restate_dev --rm -d -p 8080:8080 -p 9070-9072:9070-9072 docker.io/restatedev/restate:VAR::RESTATE_VERSION
docker run -e AWS_PROFILE -v ~/.aws/:/root/.aws --name restate_dev --rm -d -p 8080:8080 -p 9070-9071:9070-9071 docker.io/restatedev/restate:VAR::RESTATE_VERSION
```

Consult the runtime logs via `docker logs restate_dev`.
Expand Down
4 changes: 2 additions & 2 deletions docs/tour.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ docker run --name restate_dev --rm -d --network=host docker.io/restatedev/restat
<TabItem value="mac" label="macOS">

```shell
docker run --name restate_dev --rm -d -p 8080:8080 -p 9070-9072:9070-9072 docker.io/restatedev/restate:VAR::RESTATE_VERSION
docker run --name restate_dev --rm -d -p 8080:8080 -p 9070-9071:9070-9071 docker.io/restatedev/restate:VAR::RESTATE_VERSION
```

</TabItem>
Expand Down Expand Up @@ -2625,7 +2625,7 @@ curl localhost:9070/deployments -H 'content-type: application/json' -d '{"uri":

```shell
docker stop restate_dev && \
docker run --name restate_dev --rm -d -e RESTATE_OBSERVABILITY__TRACING__ENDPOINT=http://host.docker.internal:4317 -p 8080:8080 -p 9070-9072:9070-9072 docker.io/restatedev/restate:VAR::RESTATE_VERSION
docker run --name restate_dev --rm -d -e RESTATE_OBSERVABILITY__TRACING__ENDPOINT=http://host.docker.internal:4317 -p 8080:8080 -p 9070-9071:9070-9071 docker.io/restatedev/restate:VAR::RESTATE_VERSION
```

Register the services again (required because the state got wiped when the runtime was restarted with the `--rm` flag):
Expand Down

0 comments on commit eb1c196

Please sign in to comment.