Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't I use Dockerfile? #245

Open
oliverpark999 opened this issue May 16, 2023 · 2 comments
Open

Can't I use Dockerfile? #245

oliverpark999 opened this issue May 16, 2023 · 2 comments

Comments

@oliverpark999
Copy link

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.
@jhump
Copy link
Contributor

jhump commented May 16, 2023

@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.

@conorsch
Copy link

This issue can be closed: the recommended advice resolves the problem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants