Does Azure Docker-Compose V0 Task support building individual service instead of building all the services?
Below is the yaml dump of docker compose task. I want to build the individual service from the environment variable. But this always builds all the images.
steps:
- task: DockerCompose@0
displayName: 'Run a Docker Compose command'
inputs:
containerregistrytype: 'Container Registry'
dockerComposeFile: 'pathto/docker-compose.yml'
dockerComposeCommand: build
arguments: '$(ProjectName)'
Build output with debug flag=true
[debug]arguments:
[debug] -f
[debug] /pathToCompose/docker-compose.yml
[debug] -f
[debug] /myagent/.docker-compose.1583974576607.yml
[debug] -p
[debug] repository
[debug] build
/usr/sbin/docker-compose -f /pathToCompose/docker-compose.yml -f /myagent/.docker-compose.1583974576607.yml -p repository build



