Pulling action image from private registry in docker-compose installation

I am switching from using the quick-install script to docker-compose method for deployment due to some issues.

In the quick installation method, I pulled an action image from a private ECR repository using a secret as suggested here. I am unable to find its counterpart for the docker-compose installation method.

@gaushh Did you updated the value of the image in the docker-compose.override.yml as such.

version: '3.4'
services:
  app:
    image: <account_username>/<repository_name>:<new_custom_image_tag>

@gaushh This issue solved? Any update?