Skip to content

Commit

Permalink
Expose frontend gRPC port on docker containers (cadence-workflow#4312)
Browse files Browse the repository at this point in the history
  • Loading branch information
vytautas-karpavicius authored Jul 13, 2021
1 parent a1b9679 commit 5328cba
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Quickstart for development with local Cadence server

Following steps will bring up the docker container running cadence server
along with all its dependencies (cassandra, prometheus, grafana). Exposes cadence
frontend on port 7933, web on port 8088, and grafana on port 3000.
frontend on ports 7933 (tchannel) / 7833 (grpc), web on port 8088, and grafana on port 3000.

```
cd $GOPATH/src/github.com/uber/cadence/docker
Expand Down
1 change: 1 addition & 0 deletions docker/docker-compose-es-v7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ services:
- "7934:7934"
- "7935:7935"
- "7939:7939"
- "7833:7833"
environment:
- "CASSANDRA_SEEDS=cassandra"
- "PROMETHEUS_ENDPOINT_0=0.0.0.0:8000"
Expand Down
1 change: 1 addition & 0 deletions docker/docker-compose-es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ services:
- "7934:7934"
- "7935:7935"
- "7939:7939"
- "7833:7833"
environment:
- "CASSANDRA_SEEDS=cassandra"
- "PROMETHEUS_ENDPOINT_0=0.0.0.0:8000"
Expand Down
2 changes: 2 additions & 0 deletions docker/docker-compose-multiclusters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ services:
- "7934:7934"
- "7935:7935"
- "7939:7939"
- "7833:7833"
environment:
- "CASSANDRA_SEEDS=cassandra"
- "PROMETHEUS_ENDPOINT_0=0.0.0.0:8000"
Expand Down Expand Up @@ -51,6 +52,7 @@ services:
- "7944:7934"
- "7945:7935"
- "7949:7939"
- "7843:7833"
environment:
- "CASSANDRA_SEEDS=cassandra"
- "PROMETHEUS_ENDPOINT_0=0.0.0.0:9000"
Expand Down
1 change: 1 addition & 0 deletions docker/docker-compose-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ services:
- "7934:7934"
- "7935:7935"
- "7939:7939"
- "7833:7833"
environment:
- "DB=mysql"
- "MYSQL_USER=root"
Expand Down
1 change: 1 addition & 0 deletions docker/docker-compose-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ services:
- "7934:7934"
- "7935:7935"
- "7939:7939"
- "7833:7833"
environment:
- "DB=postgres"
- "DB_PORT=5432"
Expand Down
1 change: 1 addition & 0 deletions docker/docker-compose-scylla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ services:
- "7934:7934"
- "7935:7935"
- "7939:7939"
- "7833:7833"
environment:
- "DB=scylla"
- "CASSANDRA_SEEDS=scylla"
Expand Down
1 change: 1 addition & 0 deletions docker/docker-compose-statsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ services:
- "7934:7934"
- "7935:7935"
- "7939:7939"
- "7833:7833"
environment:
- "CASSANDRA_SEEDS=cassandra"
- "STATSD_ENDPOINT=statsd:8125"
Expand Down
1 change: 1 addition & 0 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ services:
- "7934:7934"
- "7935:7935"
- "7939:7939"
- "7833:7833"
environment:
- "CASSANDRA_SEEDS=cassandra"
- "PROMETHEUS_ENDPOINT_0=0.0.0.0:8000"
Expand Down

0 comments on commit 5328cba

Please sign in to comment.