From 23a3a4d889d8184c072e17a0aae6dfd24367d9c0 Mon Sep 17 00:00:00 2001 From: Gabriel Roldan Date: Tue, 8 Oct 2024 20:38:24 -0300 Subject: [PATCH] Change compose project when running acceptance-tests --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 93d0dd595..1d7cc24a6 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,8 @@ TAG=$(shell mvn help:evaluate -Dexpression=project.version -q -DforceStdout) COSIGN_PASSWORD := $(COSIGN_PASSWORD) COMPOSE_PGCONFIG_OPTIONS ?= -f compose.yml -f catalog-pgconfig.yml COMPOSE_DATADIR_OPTIONS ?= -f compose.yml -f catalog-datadir.yml -COMPOSE_ACCEPTANCE_PGCONFIG_OPTIONS ?= $(COMPOSE_PGCONFIG_OPTIONS) -f acceptance.yml -COMPOSE_ACCEPTANCE_DATADIR_OPTIONS ?= $(COMPOSE_DATADIR_OPTIONS) -f acceptance.yml +COMPOSE_ACCEPTANCE_PGCONFIG_OPTIONS ?= --project-name gscloud-acceptance-pgconfig $(COMPOSE_PGCONFIG_OPTIONS) -f acceptance.yml +COMPOSE_ACCEPTANCE_DATADIR_OPTIONS ?= --project-name gscloud-acceptance-datadir $(COMPOSE_DATADIR_OPTIONS) -f acceptance.yml UID=$(shell id -u) GID=$(shell id -g)