summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-03 17:47:55 -0600
committermo khan <mo@mokhan.ca>2025-07-03 17:47:55 -0600
commitd5f945421e59beccb9705299d73f0e8a4ab0ba41 (patch)
tree10428db08df5461e69da0fbf063e30d490481e5d /Makefile
parentd1cbd2a1964cce598fc930e159617d4a2539b127 (diff)
chore: use port 20000 to prevent colliding with sparkle
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
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