I need to run a docker container using this command
docker run --rm -it -p 5000:5000 --memory 4g --cpus 4 \
mcr.microsoft.com/azure-cognitive-services/speechservices/speech-to-text \
Eula=accept \
Billing={ENDPOINT_URI} \
ApiKey={API_KEY}
But I need to run it via a docker compose file, and can't manage to set the parameters Eula, Billing and ApiKey. Any hints on how that could be achieved?