CircleCI has introduced a new feature called orbs, which are reusable packages of configuration that streamline the integration of DevOps tools into CircleCI workflows. This article demonstrates how to use the AWS ECR Orb to automate the deployment of Docker images to Docker Hub and AWS ECR via CircleCI. Orbs, hosted on the CircleCI Orbs Registry, simplify configuration by encapsulating jobs, commands, and executors into a single bundle, reducing repetitive code and enabling easy sharing and reuse across projects. The AWS ECR Orb is specifically designed to work with CircleCI's configuration syntax, allowing for the specification of workflows and dependencies, such as requiring successful completion of tests before deploying images. The article also discusses setting up environment variables necessary for the pipeline to function, highlighting the benefits of orbs in facilitating efficient CI/CD processes and encouraging developers to contribute their own orbs to the community. Currently, all orbs are publicly available on the registry, but there are plans to support private orbs in the future.