`docker compose up --build` in a `--parallel` mode

Viewed 1270

I can run:

docker-compose build --parallel

Is it possible to run:

docker-compose up --build

with possibility to pass the --parallel flag to underlying docker-compose build run?

1 Answers

The docker-compose up doesn't accept --parallel flag unfortunately. Check here.

What I usually do is:

docker-compose build --parallel
docker-compose up
Related