out of interest, why do you want to not display these?
I personally use docker-compose with the -d parameter so it runs in the background so no output printed at all.
Let me know if you want to know more
The only downside is that I copied the current CMD of the Dockerfile into my own setup. If the HA team would change the “python -m homeassistant --config /config”, I probably must change that, too. But for the time being, I can live with that.
P.S.: In case anybody wonders about the “exec”: It is needed so that HA becomes process #1 and can handle SIGTERM. Bash doesn’t do that while a child is running, so the container could only be killed ungracefully.