Home > Software engineering >  How to run docker-compose up --build silently
How to run docker-compose up --build silently

Time:01-17

The command docker-compose up --build will output build process and options like --quiet, --quiet-pull or --log-level ERROR won't work.

I also didn't find any other options in the documents.

Any help is appreciated.

CodePudding user response:

If you are on linux:

docker-compose up --build 2>&1 1>/dev/null

If you are on Windows:

docker-compose up --build > nul 2> nul
  • Related