How can I create an Azure container instance and configure it with an environment variables file?
Something that'd be equivalent to Docker's --env-file
flag for the run
command. I couldn't find a way to do that but I'm new to both Azure and Docker.
So it'd look something like: az container create <...> --env-file myEnvFile
where myEnvFile
is stored somewhere on Azure so I could grab it, like how Docker can grab such a file locally.