🐳 🐙 Docker Compose Tip #75
Hide noisy service logs from `compose up`!
services:
proxy:
image: nginx
attach: false
Or per run:
docker compose up --no-attach proxy
Logs still streamable via `compose logs`.
Guide: lours.me/posts/compose-tip-075-attach-false/
#Docker #Compose #Runtime
Hide noisy service logs from docker compose up without losing access to them, using attach in the Compose file or attach flags on the CLI.