From 08f0bed246d845c0d6c259cc726f40db6a1672b8 Mon Sep 17 00:00:00 2001 From: Jessica Gadling Date: Tue, 1 Oct 2024 14:00:17 -0700 Subject: [PATCH] fix: workaround for docker compose bugs. (#295) --- apiv2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apiv2/Makefile b/apiv2/Makefile index 769f3c5a3..972a1d32e 100644 --- a/apiv2/Makefile +++ b/apiv2/Makefile @@ -19,7 +19,7 @@ export docker_compose:=docker compose # just hangs on OSX trying to launch itself in a container if it can't figure out # which one to use, so it's *VERY* important to include the --rm flag when invoking # docker compose run. -export docker_compose_run:=docker compose run --rm +export docker_compose_run:=docker compose run --rm --no-deps ### HELPFUL ################################################# .PHONY: help