如果重新安装,如何使用 docker-compose 成功安装 AWX?

How to install AWX successfully with docker-compose if reinstall it again?

第一次安装成功。但是又重新安装,总是失败。


使用docker-compose 安装AWX

ansible-playbook -i inventory install.yml

错误

TASK [local_docker : Start the containers] *******************************************************************************************************************
fatal: [localhost]: FAILED! => {"changed": false, "errors": [], "module_stderr": "Creating awx_postgres ... \nCreating awx_memcached ... \nCreating awx_redis     ... \n\u001b[2A\u001b[2K\nCreating awx_memcached ... \n\u001b[2B\u001b[3A\u001b[2K\nCreating awx_postgres  ... \n\u001b[3B\u001b[1A\u001b[2K\nCreating awx_redis     ... \n\u001b[1BCreating awx_web       ... \nHost is already in use by another container\n\u001b[1A\u001b[2K\nCreating awx_web       ... \n\u001b[1B", "module_stdout": "", "msg": "Error starting project Encountered errors while bringing up the project."}

我删除了所有可能的资源

cd ~/.awx/awxcompose
docker-compose down

docker network prune
docker volume prune
docker container prune
docker image prune

重新安装还是一样的错误

列出所有 运行ning 容器并找到你的

Docker ps

删除它

Docker rm -f container_id

重新开始(docker 运行 ...,或使用您的 docker-compose)