while running the following docker command, i was running in to the issue “–env”: executable file not found in $PATH: unknown.” as you see below all i am trying to do is pass few environmental variables to the run command.
docker run 84aa8c74fbc8 --env azclientId='00000000000000' --env azclientSecret='0000000000' --env aztenantId='00000000000'
but what the docs dont mention is that we need to pass the image after the –env variables so the following run command fixed the issue.
docker run --env azclientId='00000000000000' --env azclientSecret='0000000000' --env aztenantId='00000000000' 84aa8c74fbc8