How do i run containers from the updated AWX images?

I have made few changes in the running containers for awx (few updates and addition of new packages) and committed the changes in new images. Where can i find the commands to create and run new containers from newly created images (with changes). The idea is to have the updated images and containers running for AWX instead of the ones available from dockerhub or ones created locally.

Could anyone please suggest a way to get this done or share the exact commands which are used to spin containers from dockerhub images (which specifies commands, ports and which containers will talk to each other)?

You can start with analyzing the docker-compose.yaml ( https://github.com/ansible/awx/blob/devel/INSTALL.md#docker-compose ) file to understand how these containers are interlinking with each other. From there, you can bring up a new image following with the changes what you had done with the original images and point out the new one in this file. That way you can persist the changes what you are looking for.

One more thing, AWX 5.0.0 released recently and if you are looking for Ansible updated version, then you can use the latest version which is running on Ansible 2.8 I believe.