How to test the docker operations?

ARTIFACTORY: Installation Quick Start Guide - Artifactory on EKS with NLB, S3 bucket and configure subdomain docker access method

AuthorFullName__c
Vignesh Surendrababu
articleNumber
000005553
ft:sourceType
Salesforce
FirstPublishedDate
2023-01-17T09:45:17Z
lastModifiedDate
2023-01-22T11:10:58Z
VersionNumber
3
Since the Nginx is using the server_name which includes the regex pattern, we can use the below format to perform the docker login, docker pull/push

Example: if the server_name contains “~(?<repo>.+)\.test.eks.com test.eks.com”, it indicates that the server is configured to use the subdomain docker access method.

Then to perform docker login
Use:
docker login <repositoryname>.test.eks.com

To perform Docker pull/push:
Use:
docker pull <repositoryname>.test.eks.com/image:tag
docker push <repositoryname>.test.eks.com/image:tag