# Step 1: Load the image
docker load -i apminsight-dotnetagent.tar
# Step 2: Verify the image is loaded
docker images | grep apminsight-dotnetagent
# Step 3: Tag for your private registry
docker tag site24x7/apminsight-dotnetagent:latest myregistry.example.com/apminsight-dotnetagent:latest
# Step 4: Login to your private registry
docker login myregistry.example.com
# Step 5: Push to private repository
docker push myregistry.example.com/apminsight-dotnetagent:latest
Note: To use a specific version instead of latest, replace the tag in all commands.
For example, use site24x7/apminsight-dotnetagent:7.0.2 instead of site24x7/apminsight-dotnetagent:latest