You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to figure out how to use glob pattern in this case.
I have 3 services: a, b and c.
Now I want to seperate a and b into one image and c in the other.
So in docker compose file I think i should set SERVICES variable like this:
image 1: SERVICES: a,b,!c
image 2: SERVICES: c, !a,!b
But it does not work.
I also try SERVICE: *,!c, too.
How do I do in this case?
The text was updated successfully, but these errors were encountered:
I'm trying to figure out how to use glob pattern in this case.
I have 3 services: a, b and c.
Now I want to seperate a and b into one image and c in the other.
So in docker compose file I think i should set SERVICES variable like this:
image 1:
SERVICES: a,b,!c
image 2:
SERVICES: c, !a,!b
But it does not work.
I also try
SERVICE: *,!c
, too.How do I do in this case?
The text was updated successfully, but these errors were encountered: