diff options
author | Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com> | 2024-04-02 21:13:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-02 21:13:14 +0200 |
commit | 7cdf1c7f96f9d66375d9d8174ee707dcfacee27c (patch) | |
tree | f2d8e74b9f7c4c1d3927fea85f19e351c6dc19cb /Makefile | |
parent | Make db password optional for wsrelay (#15046) (diff) | |
download | awx-7cdf1c7f96f9d66375d9d8174ee707dcfacee27c.tar.xz awx-7cdf1c7f96f9d66375d9d8174ee707dcfacee27c.zip |
Update DOCKER_COMPOSE command to `docker compose` (#15056)
* Update DOCKER_COMPOSE command
docker-compose will stop being supported soon and this is causing CI flake setting DOCKER_COMPOSE default to `docker compose`
* Give AWX network a static name
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ PYTHON := $(notdir $(shell for i in python3.11 python3; do command -v $$i; done|sed 1q)) SHELL := bash -DOCKER_COMPOSE ?= docker-compose +DOCKER_COMPOSE ?= docker compose OFFICIAL ?= no NODE ?= node NPM_BIN ?= npm |