Legacy Seqera container image registries
The cr.seqera.io
container registry is the default Seqera Enterprise container image registry from version 22.4. Using the AWS ECR Seqera container registry in existing installations is still supported but will be deprecated on June 1, 2025.
Seqera publishes legacy Seqera Enterprise containers to a private Elastic Container Registry (ECR) on AWS. Retrieve them with the following steps:
- Provide Seqera with your AWS Account ID.
Supply this value to the Seqera representative managing your onboarding and wait for confirmation that it has been added to the ECR repository policy as an approved Principal.
- Retrieve a local copy of the container.
With the docker compose
deployment method, you must retrieve container copies for local use:
-
Install AWS CLI on the target machine.
-
Configure the AWS CLI with an IAM User with at least these privileges:
ecr:BatchGetImage
ecr:GetAuthorizationToken
ecr:GetDownloadUrlForLayer -
Authenticate Docker against the Seqera ECR:
# AWS CLI v2
aws ecr get-login-password --region eu-west-1 | \
docker login --username AWS --password-stdin 195996028523.dkr.ecr.eu-west-1.amazonaws.com
# AWS CLI v1
$(aws ecr get-login --registry-ids 195996028523 --region eu-west-1 --no-include-email) -
Pull the containers to your machine:
export REPOSITORY_URL="195996028523.dkr.ecr.eu-west-1.amazonaws.com/nf-tower-enterprise"
export TAG="v22.3.1"
docker pull ${REPOSITORY_URL}/backend:${TAG}
docker pull ${REPOSITORY_URL}/frontend:${TAG}