Hi All
this is the yml file that I use :
version: '3.5'
services:
mvntestpaybox:
container_name: mvn-test-paybox
environment:
SUITE: ${SUITE}
build:
context: .
dockerfile: Dockerfile
when I run the docker compose command on windows 10 I get the following error :
C:\Users\user\Desktop\AdiDemo> SUITE=payboxRunner.xml docker-compose -f docker-compose-mobilerun-daily.yml up --force-recreate
SUITE=payboxRunner.xml : The term ‘SUITE=payboxRunner.xml’ is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is
correct and try again.
At line:1 char:1
- SUITE=payboxRunner.xml docker-compose -f docker-compose-mobilerun-dai …
-
+ CategoryInfo : ObjectNotFound: (SUITE=payboxRunner.xml:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException
when I run the same command on a mac it runs without any issues . what causes this issue in windows 10 ?