From e074872b8d25ba9138ea41568f7c7e7d781b2bb6 Mon Sep 17 00:00:00 2001 From: John Gleason Date: Mon, 5 Apr 2021 08:04:25 -0500 Subject: [PATCH] Fix docker-compose up options Should the `up` options be after the `up` command? I'm assuming `COMPOSE_UP_OPTS` exists so we can run detached like so: `COMPOSE_UP_OPTS=-d make docker-compose` If I am misunderstanding the purpose of `COMPOSE_UP_OPTS`, is there other guidance on how to autostart AWX detached? --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0bcfb5f9c8..c530c4dea7 100644 --- a/Makefile +++ b/Makefile @@ -473,7 +473,7 @@ docker-compose-sources: .git/hooks/pre-commit -e cluster_node_count=$(CLUSTER_NODE_COUNT) docker-compose: docker-auth awx/projects docker-compose-sources - docker-compose -f tools/docker-compose/_sources/docker-compose.yml $(COMPOSE_UP_OPTS) up + docker-compose -f tools/docker-compose/_sources/docker-compose.yml up $(COMPOSE_UP_OPTS) docker-compose-credential-plugins: docker-auth awx/projects docker-compose-sources echo -e "\033[0;31mTo generate a CyberArk Conjur API key: docker exec -it tools_conjur_1 conjurctl account create quick-start\033[0m"