summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-03 17:26:57 -0600
committermo khan <mo@mokhan.ca>2025-07-03 17:26:57 -0600
commit1cc1d29b5e791b6701fd98b0351915c2401dc689 (patch)
treef273c8bae42a40f1717139521a35d11b96d45e7f /Makefile
parentb931c1085d4e1a6801e3cc4016d7d233ad9276bb (diff)
chore: use port 8080 to not collide with sparkle port
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0d86c903..fb1913f1 100644
--- a/Makefile
+++ b/Makefile
@@ -44,11 +44,11 @@ build-image:
@docker build --tag $(IMAGE_TAG) .
run-image: build-image
- @docker run --rm -p 10000:10000 -p 9901:9901 --init -it $(IMAGE_TAG)
+ @docker run --rm -p 8080:8080 -p 50051:50051 --init -it $(IMAGE_TAG)
# HTTP and gRPC testing targets
health-check:
- @curl -s http://localhost:10000/health || echo "Service not running"
+ @grpcurl -plaintext localhost:50051 grpc.health.v1.Health/Check
list-services:
@grpcurl -plaintext localhost:50051 list