Skip to content

AWX (Ansible): 2. AWX Update steps: preparation

apt update

apt install nodejs npm -y
npm install npm --global
apt install python3-pip git pwgen -y
apt install ansible -y
apt install apt-transport-https ca-certificates curl software-properties-common -y

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"

apt update -y
apt install docker-ce -y
apt install docker-compose -y
docker-compose --version
  docker-compose version 1.8.0, build 94f7016
pip3 install docker-compose==1.8.0