Install Ansible AWX on Ubuntu
git clone --depth 50 https://github.com/ansible/awx.git
cd awx/installer/
Change secret_key inside inventory file.
Execute playbook
ansible-playbook -i inventory install.yml
Use the docker ps command to get a list of running containers.
$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
a2acc6628459 ansible/awx:13.0.0 "tini -- /usr/bin/la…" 3 minutes ago Up 3 minutes 8052/tcp awx_task
33999b021c10 ansible/awx:13.0.0 "tini -- /bin/sh -c …" 3 minutes ago Up 3 minutes 0.0.0.0:80->8052/tcp awx_web
a545cf8abb82 postgres:10 "docker-entrypoint.s…" 3 minutes ago Up 3 minutes 5432/tcp awx_postgres
bd8517f2fe80 redis "docker-entrypoint.s…" 3 minutes ago Up 3 minutes 6379/tcp awx_redis
Access Ansible AWX Dashboard
The web portal is accessible via hostip_or_hostname:80
Comments
Post a Comment