AWX Docker-Compose YAML
A simplified version of Installing AWX 17.1.0. The official AWX Docker-Compose installation method is too complicated, so it is simplified into this project.
- Docker 19.03.15+
- Docker-Compose 2.11.1+
Not yet completed
bash <(curl -sL https://raw.githubusercontent.com/voidking/awxcompose/main/install.sh)- Get the code
git clone https://github.com/voidking/awxcompose.git- Prepare AWX configuration
cp -r awxcompose/17.1.0/awx /opt/
cd /opt/awx
vim environment.sh # Modify username and password as needed
vim credentials.py # Modify username and password as needed- Start AWX
docker-compose pull
docker-compose up -d- Initialize the database
docker exec -it awx_web /var/lib/awx/venv/awx/bin/awx-manage migrate- Restart AWX
docker-compose down
docker-compose up -d- Automatically install scripts
- Support more awx versions