简体   繁体   中英

Docker custom run params on compose file

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?

I managed to make it work with @Zeitounator suggestion

The docker compose file end looking like this:

version: '3'
services:
  scriptme-ml-model:
    image: mcr.microsoft.com/azure-cognitive-services/speechservices/speech-to-text
    ports:
      - 5000:5000
    deploy:
        resources:
            limits:
              cpus: 2
              memory: 2g
            reservations:
              cpus: 2
              memory: 2g
    command: >
      Eula=accept
      Billing={ENDPOINT_URI}
      ApiKey={API_KEY}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM