From 7cc7f2d6300e43b860db319a42e6dc0f63c54b8a Mon Sep 17 00:00:00 2001 From: Sotirios Mantziaris Date: Mon, 19 Aug 2024 10:39:50 +0300 Subject: [PATCH] chore: Update docker-compose commands in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0f7ba1ea7..d980a9e0c 100644 --- a/Makefile +++ b/Makefile @@ -33,10 +33,10 @@ example-client: OTEL_EXPORTER_OTLP_INSECURE="true" go run examples/client/main.go deps-start: - docker-compose up -d + docker compose up -d deps-stop: - docker-compose down + docker compose down # disallow any parallelism (-j) for Make. This is necessary since some # commands during the build process create temporary files that collide