From e630680955766731060d139416ec2054b760228f Mon Sep 17 00:00:00 2001 From: Seiti Yamashiro Date: Fri, 13 Feb 2026 10:55:14 -0300 Subject: [PATCH] fix: docker-compose doens't work And it shouldn't be supported, even when available at local development environment. As is, the Makefile is trying to use it only to fail, as the docker-compose.yml file isn't supported by the v1 (mainly the variable interpolation). --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 614be23..fa34df3 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,4 @@ -# Use docker-compose or docker compose based on availability -DOCKER_COMPOSE := $(shell command -v docker-compose 2>/dev/null || echo "docker compose") +DOCKER_COMPOSE := docker compose COMPOSE_FILE := docker/docker-compose.yaml COMPOSE_TEST_FILE := docker/docker-compose.test.yaml COMPOSE_CLUSTER2_FILE := docker/docker-compose.cluster2.yaml