diff --git a/dev-environments/http-proxy-plain-http-upstream/Makefile b/dev-environments/http-proxy-plain-http-upstream/Makefile index a616c6e74..ccd279341 100644 --- a/dev-environments/http-proxy-plain-http-upstream/Makefile +++ b/dev-environments/http-proxy-plain-http-upstream/Makefile @@ -6,7 +6,7 @@ WORKDIR := $(patsubst %/,%,$(dir $(MKFILE_PATH))) DOCKER ?= $(shell which docker 2> /dev/null || echo "docker") gateway: ## run gateway configured to access upstream powered with TLS - $(DOCKER) compose -f docker-compose.yml up --attach gateway + $(DOCKER) compose -f docker-compose.yml run --service-ports gateway clean: $(DOCKER) compose down --volumes --remove-orphans diff --git a/dev-environments/https-proxy-upstream-tlsv1.3/Makefile b/dev-environments/https-proxy-upstream-tlsv1.3/Makefile index 741676947..fe6780662 100644 --- a/dev-environments/https-proxy-upstream-tlsv1.3/Makefile +++ b/dev-environments/https-proxy-upstream-tlsv1.3/Makefile @@ -6,7 +6,7 @@ WORKDIR := $(patsubst %/,%,$(dir $(MKFILE_PATH))) DOCKER ?= $(shell which docker 2> /dev/null || echo "docker") gateway: ## run gateway configured to access upstream powered with TLS - $(DOCKER) compose -f docker-compose.yml up --attach gateway + $(DOCKER) compose -f docker-compose.yml run --service-ports gateway clean: $(DOCKER) compose down --volumes --remove-orphans diff --git a/dev-environments/keycloak-env/Makefile b/dev-environments/keycloak-env/Makefile index 622752bea..87695cedb 100644 --- a/dev-environments/keycloak-env/Makefile +++ b/dev-environments/keycloak-env/Makefile @@ -6,7 +6,7 @@ WORKDIR := $(patsubst %/,%,$(dir $(MKFILE_PATH))) DOCKER ?= $(shell which docker 2> /dev/null || echo "docker") gateway: ## run gateway configured to keycloak integration - $(DOCKER) compose -f docker-compose.yml up --attach gateway + $(DOCKER) compose -f docker-compose.yml run --service-ports gateway keycloak-data: ## Keycloak provisioning # Keycloak 23.0.4 REST API reference diff --git a/dev-environments/listen-tls/Makefile b/dev-environments/listen-tls/Makefile index 741676947..fe6780662 100644 --- a/dev-environments/listen-tls/Makefile +++ b/dev-environments/listen-tls/Makefile @@ -6,7 +6,7 @@ WORKDIR := $(patsubst %/,%,$(dir $(MKFILE_PATH))) DOCKER ?= $(shell which docker 2> /dev/null || echo "docker") gateway: ## run gateway configured to access upstream powered with TLS - $(DOCKER) compose -f docker-compose.yml up --attach gateway + $(DOCKER) compose -f docker-compose.yml run --service-ports gateway clean: $(DOCKER) compose down --volumes --remove-orphans diff --git a/dev-environments/opentelemetry-instrumented-gateway/Makefile b/dev-environments/opentelemetry-instrumented-gateway/Makefile index 60f9565e4..7e0707631 100644 --- a/dev-environments/opentelemetry-instrumented-gateway/Makefile +++ b/dev-environments/opentelemetry-instrumented-gateway/Makefile @@ -6,7 +6,7 @@ WORKDIR := $(patsubst %/,%,$(dir $(MKFILE_PATH))) DOCKER ?= $(shell which docker 2> /dev/null || echo "docker") gateway: ## run gateway configured to access plain HTTP 1.1 upstream - $(DOCKER) compose -f docker-compose.yml up --attach gateway + $(DOCKER) compose -f docker-compose.yml run --service-ports gateway clean: $(DOCKER) compose down --volumes --remove-orphans diff --git a/dev-environments/plain-http-upstream/Makefile b/dev-environments/plain-http-upstream/Makefile index 60f9565e4..7e0707631 100644 --- a/dev-environments/plain-http-upstream/Makefile +++ b/dev-environments/plain-http-upstream/Makefile @@ -6,7 +6,7 @@ WORKDIR := $(patsubst %/,%,$(dir $(MKFILE_PATH))) DOCKER ?= $(shell which docker 2> /dev/null || echo "docker") gateway: ## run gateway configured to access plain HTTP 1.1 upstream - $(DOCKER) compose -f docker-compose.yml up --attach gateway + $(DOCKER) compose -f docker-compose.yml run --service-ports gateway clean: $(DOCKER) compose down --volumes --remove-orphans diff --git a/dev-environments/upstream-tlsv1.3/Makefile b/dev-environments/upstream-tlsv1.3/Makefile index 741676947..fe6780662 100644 --- a/dev-environments/upstream-tlsv1.3/Makefile +++ b/dev-environments/upstream-tlsv1.3/Makefile @@ -6,7 +6,7 @@ WORKDIR := $(patsubst %/,%,$(dir $(MKFILE_PATH))) DOCKER ?= $(shell which docker 2> /dev/null || echo "docker") gateway: ## run gateway configured to access upstream powered with TLS - $(DOCKER) compose -f docker-compose.yml up --attach gateway + $(DOCKER) compose -f docker-compose.yml run --service-ports gateway clean: $(DOCKER) compose down --volumes --remove-orphans