Sign inSign up

kai5263499/grpcui

By kai5263499

Updated over 5 years ago

Docker Image for https://github.com/fullstorydev/grpcui that allows protosets

Image
0

306

kai5263499/grpcui repository overview

Docker Image for grpcui

Docker image for https://github.com/fullstorydev/grpcui

Running a Container

With a server with reflection enabled

To run a container, you need to set GRPCUI_SERVER to your grpc server (host:port). You should also enable reflection proto service in your grpc server so the grpc-ui can read available services/methods.

docker run -eGRPCUI_SERVER=172.17.0.1:8980 -p8080:8080 wongnai/grpcui

With a server using a protoset

docker run \
-e GRPCUI_SERVER=172.17.0.1:6000 \
-p 8080:8080 \
--mount type=bind,source="/my/service.protoset",target=/protoset/service.protoset \
kai5263499/grpcui

Environment Variables

VariableDescriptionDefault Value
GRPCUI_SERVERgrpc server host and port in host:port format

Tag summary

Content type

Image

Digest

Size

14.9 MB

Last updated

over 5 years ago

docker pull kai5263499/grpcui