You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running using Dockerfile of fullstorydev/grpcui, the following error occurs.
What's the problem?
Even if I find a document, there is no way to drive it with Dockerfile, so it is difficult.
Error
This program requires exactly one arg: the host:port of gRPC server.
Try '/bin/grpcui -help' for more details.
The text was updated successfully, but these errors were encountered:
@oliverpark999, you have to pass args to the docker container. For example:
docker run --rm -p :8080:8080 fullstorydev/grpcui:v1.3.1 demo.connect.build:443
That last argument is the host:port. Specify args after the image name.
If you are running the container in an environment like Kubernetes, it also includes ways to pass parameters to the container in the workload specification.
When running using Dockerfile of fullstorydev/grpcui, the following error occurs.
What's the problem?
Even if I find a document, there is no way to drive it with Dockerfile, so it is difficult.
The text was updated successfully, but these errors were encountered: