Skip to content

Commit

Permalink
Add port 9072 everywhere (via ranges)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkleeman committed Jan 15, 2024
1 parent 2ff8ff8 commit f5738ce
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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:9070 -p 9071:9071 docker.io/restatedev/restate:VAR::RESTATE_VERSION
docker run --name restate_dev --rm -d -p 8080:8080 -p 9070-9072:9070-9072 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:9070 -p 9071:9071 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-9072:9070-9072 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:9070 -p 9071:9071 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-9072:9070-9072 docker.io/restatedev/restate:VAR::RESTATE_VERSION
```

Consult the runtime logs via `docker logs restate_dev`.
Expand Down
6 changes: 3 additions & 3 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:9070 -p 9071:9071 docker.io/restatedev/restate:VAR::RESTATE_VERSION
docker run --name restate_dev --rm -d -p 8080:8080 -p 9070-9072:9070-9072 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:9070 -p 9071:9071 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-9072:9070-9072 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 Expand Up @@ -2713,4 +2713,4 @@ Restate services can run with minimal changes on AWS Lambda as well.

Possible next step:
- [Run the examples](https://github.com/restatedev/examples)
- [Check out the SDK documentation](/category/api)
- [Check out the SDK documentation](/category/api)

0 comments on commit f5738ce

Please sign in to comment.