mirror of
https://github.com/ansible/awx.git
synced 2026-01-10 15:32:07 -03:30
* Addresses "make docker-compose-build" failure due to missing architecture mapping. Signed-off-by: Hideki Saito <saito@fgrep.org>
13 lines
412 B
YAML
13 lines
412 B
YAML
---
|
|
build_dev: false
|
|
kube_dev: false
|
|
headless: no
|
|
dockerfile_dest: '../..'
|
|
dockerfile_name: 'Dockerfile'
|
|
template_dest: '_build'
|
|
|
|
receptor_image: quay.io/ansible/receptor:devel
|
|
|
|
# Helper vars to construct the proper download URL for the current architecture
|
|
image_architecture: '{{ { "x86_64": "amd64", "aarch64": "arm64", "armv7": "arm", "arm64": "arm64", "ppc64le": "ppc64le" }[ansible_facts.architecture] }}'
|