Is there a way to build with docker compose without --parallel by default?

Viewed 636

Is there a way to build with docker compose without --parallel by default?

When I run

docker compose build

I want it to build containers one by one, but it starts to build all at the same time

1 Answers

You could utilize depends_on and chain your services, making them depend on one another.

Related