Hi, i have created a docker-compose.yml having reusable blocks:
services:
sv1: &reuse
build:
args:
PARAM1: "value of all sv"
PARAM2: "value of all sv"
PARAM3: "value of all sv"
...
sv2:
<<: *reuse
build:
args:
PARAM2: "value of sv2"
My hope was that on the following blocks, only the value of PARAM2 will change, remaining all the former ones. But it looks like that this is not working this way?
Any ideas how to achieve this behaviour?