The default Execution Environment for AWX.
First, install ansible-builder:
pip install 'git+https://github.com/ansible/ansible-builder.git@devel#egg=ansible-builder'Then build:
# With podman (default)
ansible-builder build -v3 -t ghcr.io/ssimpson89/ascender-ee
# With docker
ansible-builder build -v3 -t ghcr.io/ssimpson89/ascender-ee --container-runtime=docker# With podman (default)
./build.sh
# With docker
./build.sh docker
# Custom tag
./build.sh podman my-custom-tag:latest# Install dependencies
make install
# Build with podman (default)
make build
# Build with docker
make build-docker
# Custom tag
make build TAG=my-custom-tag:latest
# Show all available targets
make help