Using the docker run
command, I'm trying to pass my NEPTUNE_API_TOKEN to my container.
My understanding is that I should use the -e
flag as follows: -e ENV_VAR='env_var_value'
and that might work.
I wish, however, to use the value existing in the already-running session, as follows:
docker run -e NEPTUNE_API_TOKEN=$(NEPTUNE_API_TOKEN) <my_image>
However, after doing so, NEPTUNE_API_TOKEN is set to empty when checking the value inside the container. My question is whether I'm doing something wrong or if this is not possible and I must provide an explicit Neptune API token as a string.
$(NEPTUNE_API_TOKEN)
is the syntax for running a command and grabbing the output. Use$NEPTUNE_API_TOKEN
.