Am I understanding `[docker].env_vars` right? I'm ...
# general
b
Am I understanding
[docker].env_vars
right? I'm setting it to
=["FOO"]
in my
pants.toml
and was hoping
FOO=bar ./pants run my_docker_img
would inherit the value, but no
1
--docker-run-args="-e FOO=bar"
works, FWIW
s
It sets env vars for the actual
docker
process, so you'd get
FOO=<inherited-value>
docker
build
<args>
b
Ah, so
--run-args
seems to be it then