According to the fig YML reference, I should be able to declare an environment variable with only a key to resolve this to the corresponding variable on the host. That doesn't work for me in boot2docker.
Here's my fig.yml:
test:
image: ubuntu
command: env
environment:
TESTVAR:
I'm running TESTVAR=foo fig up
and I'm getting the following output:
test_1 | TESTVAR=
I suspect this is because I'm using the fig container with the alias from fig #598 in boot2docker, which probably doesn't pass the environment variables through properly. Is there any workaround for this?