docker run with arguments example
Example 1: how does docker run image read runtime arguments
$ docker build --build-arg HTTP_PROXY=http://10.20.30.2:1234 .
Example 2: how does docker run image read runtime arguments
$ docker run my-awesome-image -e VAR_FROM_ENV -e "MYVAR=2"