I have a docker image that requires an ENV variable to start in the correct mode (eg. $ docker run -e "env_var_name=another_value" ...
). The Dockerfile starts with:
FROM nginx:alpine
ENV env_var_name standalone
In the Azure Devops release pipeline I use AzureRmWebAppDeployment@3 to create the docker container but I do not understand where I can do the ENV settings. I cannot use the .env file. many thanks