New AWX Cli

For docker awx installs do you install the new cli on the awx_web or awx_task container. I assume you don’t install it on the server hosting the docker containers.

`

pip install "https://github.com/ansible/awx/archive/$VERSION.tar.gz#egg=awxkit&subdirectory=awxkit"
awx --help

`

Thanks

Damon Powell (dscottpowell@gmail.com) said:

For docker awx installs do you install the new cli on the awx_web or
awx_task container. I assume you don't install it on the server hosting the
docker containers.

pip install "https://github.com/ansible/awx/archive/$VERSION.tar.gz#egg=awxkit&subdirectory=awxkit"
awx --help

You install it wherever you need to call it from. In most cases, it's on
some other box (laptop, jenkins, some other control plane), not on either of
the web or task container.

Bill

Thank you.