From d5f945421e59beccb9705299d73f0e8a4ab0ba41 Mon Sep 17 00:00:00 2001 From: mo khan Date: Thu, 3 Jul 2025 17:47:55 -0600 Subject: chore: use port 20000 to prevent colliding with sparkle --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fb1913f1..6eb1ec31 100644 --- a/Makefile +++ b/Makefile @@ -44,11 +44,11 @@ build-image: @docker build --tag $(IMAGE_TAG) . run-image: build-image - @docker run --rm -p 8080:8080 -p 50051:50051 --init -it $(IMAGE_TAG) + @docker run --rm -p 20000:20000 --init -it $(IMAGE_TAG) # HTTP and gRPC testing targets health-check: - @grpcurl -plaintext localhost:50051 grpc.health.v1.Health/Check + @grpcurl -plaintext localhost:20000 grpc.health.v1.Health/Check list-services: - @grpcurl -plaintext localhost:50051 list + @grpcurl -plaintext localhost:20000 list -- cgit v1.2.3