From 35c8010ca478fd54675811e64e015bf6db85b72b Mon Sep 17 00:00:00 2001 From: Kevin Burke Date: Thu, 11 Jul 2024 13:42:06 -0700 Subject: [PATCH] Makefile: use docker compose not docker-compose As part of the Docker binary this will be updated more often and has better support and newer features than the separate "docker-compose" binary. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e2374f2e3..47f45c950 100644 --- a/Makefile +++ b/Makefile @@ -4,4 +4,4 @@ test: go test -race -cover ./... docker: - docker-compose up -d + docker compose up -d