summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAlan Rominger <arominge@redhat.com>2023-05-02 17:47:29 +0200
committerGitHub <noreply@github.com>2023-05-02 17:47:29 +0200
commitf012a69c9348ac12247180d492f90c0ba58c877a (patch)
treea781f279a42fa056c2e65bd323186fce9ed31b08 /Makefile
parentMerge pull request #13915 from marshmalien/10877-dup-freq-types-schedule (diff)
downloadawx-f012a69c9348ac12247180d492f90c0ba58c877a.tar.xz
awx-f012a69c9348ac12247180d492f90c0ba58c877a.zip
Allow running AWX checks on forks (#13938)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e654a1e445..12a6328000 100644
--- a/Makefile
+++ b/Makefile
@@ -42,7 +42,10 @@ TACACS ?= false
VENV_BASE ?= /var/lib/awx/venv
-DEV_DOCKER_TAG_BASE ?= ghcr.io/ansible
+DEV_DOCKER_OWNER ?= ansible
+# Docker will only accept lowercase, so github names like Paul need to be paul
+DEV_DOCKER_OWNER_LOWER = $(shell echo $(DEV_DOCKER_OWNER) | tr A-Z a-z)
+DEV_DOCKER_TAG_BASE ?= ghcr.io/$(DEV_DOCKER_OWNER_LOWER)
DEVEL_IMAGE_NAME ?= $(DEV_DOCKER_TAG_BASE)/awx_devel:$(COMPOSE_TAG)
RECEPTOR_IMAGE ?= quay.io/ansible/receptor:devel