mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 01:57:35 -03:30
Merge pull request #10106 from rooftopcellist/compose-opts-order
Docker-compose requires the options to be passed before up SUMMARY The $(COMPOSE_UP_OPTS) in the docker-compose make target need to come before the up command or else they are not parsed correctly. ISSUE TYPE Bugfix Pull Request COMPONENT NAME API AWX VERSION 19.0.0 Reviewed-by: Jake McDermott <yo@jakemcdermott.me> Reviewed-by: Bianca Henderson <beeankha@gmail.com>
This commit is contained in:
commit
1d6579e110
2
Makefile
2
Makefile
@ -469,7 +469,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 up $(COMPOSE_UP_OPTS)
|
||||
docker-compose -f tools/docker-compose/_sources/docker-compose.yml $(COMPOSE_UP_OPTS) up
|
||||
|
||||
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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user