We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1263c3a commit 65d03fcCopy full SHA for 65d03fc
deps/rabbitmq_prometheus/Makefile
@@ -44,7 +44,7 @@ DOCKER_COMPOSE_FILES := $(wildcard docker/docker-compose-*.yml)
44
.PHONY: $(DOCKER_COMPOSE_FILES)
45
$(DOCKER_COMPOSE_FILES):
46
@cd docker && \
47
- docker-compose --file $(@F) $(RUN) ; \
+ docker compose --file $(@F) $(RUN) ; \
48
true
49
.PHONY: down
50
down: RUN = down
@@ -53,7 +53,7 @@ down: $(DOCKER_COMPOSE_FILES) # Stop all containers
53
# Defined as explicit, individual targets so that autocompletion works
54
define DOCKER_COMPOSE_UP
55
cd docker && \
56
-docker-compose --file docker-compose-$(@F).yml up --detach
+docker compose --file docker-compose-$(@F).yml up --detach
57
endef
58
.PHONY: metrics
59
metrics: # Run all metrics containers: Grafana, Prometheus & friends
0 commit comments