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?
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?
The docker-compose up doesn't accept --parallel flag unfortunately. Check here.
What I usually do is:
docker-compose build --parallel
docker-compose up