A network confirmation tool when building a server infrastructure for grpc application.
$ docker run -e PORT=443 -p 443:443 enm10k/grpc-hello-world greeter_server
This step is necessary if the server and client are on the same machine.
$ docker inspect $(docker ps -q|head -n1)|jq ".[0].NetworkSettings.IPAddress"
"172.17.0.2"
$ echo "ADDRESS=172.17.0.2:443" > env.list
$ docker run --env-file ./env.list enm10k/grpc-hello-world greeter_client
2017/01/19 13:55:52 Greeting: Hello world