I am trying to set environment variables in a docker container but I get the following error
starting container process caused "exec: \"-e\": executable file not found in $PATH": unknown
Here is how I set the variables
docker run image -e ENV_VAR= '{"a":{"b":"c"}}' -p 3000:3000
What am I missing?