From 9e2449dbfb92c971aad88cd09e9f1b09654cfe27 Mon Sep 17 00:00:00 2001 From: Daniel Thorn Date: Thu, 1 Feb 2024 13:12:53 -0800 Subject: [PATCH] bug 1877534: use --attach-dependencies=false instead of --no-attach (#2890) --- Makefile | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 9d1a107a7..68738d9ff 100644 --- a/Makefile +++ b/Makefile @@ -51,16 +51,12 @@ setup: .env ## | Initialize services. .PHONY: run run: .env .docker-build ## | Run the web app and services. - # NOTE(willkg): We tag all the backing services with --no-attach here to - # prevent them from spamming stdout + # NOTE(willkg): We tag all the services with --attach here to + # prevent dependencies from spamming stdout ${DC} up \ - --no-attach db \ - --no-attach statsd \ - --no-attach gcs-emulator \ - --no-attach redis-cache \ - --no-attach localstack \ - --no-attach oidcprovider \ - --no-attach statsd \ + --attach web \ + --attach frontend \ + --attach fakesentry \ web frontend fakesentry .PHONY: devcontainerbuild