Hi ,
i Am using AWX version 23.5.1 with docker compose. I preformed the installation in online machine and then moved it as OVF to my server(offline).
Of course , I tested everything in the online machine to verify that I am not running into any problems.
After that I moved it , I tried to run jobs but I got this error
There is an option on AWX to pull an EE image only when it’s missing. If I recall correctly, the default is to pull always, even when the image is present. Can you double check that?
I have resolved this problem on my offline environment. Need to follow these steps.
you must use your private registry to pull the image in my case (nexus repository).
pull the image from your local repository.
add the following content to
/etc/docker/daemon.json
{
"registry-mirrors": ["https://<your registry-url>"]
}
after changes restart the docker
systemctl restart docker
login into the container and use below command to create image registry credentials.