Store the ActiveGate image in a private registry
The ActiveGate image is available in the container registry on your Dynatrace environment. Follow the instructions below if you prefer to store the ActiveGate image in a private registry.
Be sure to replace the placeholders (<...>
) with the actual values:
Parameter | Value description |
---|---|
<activegate_version> | The semantic versioning form (<major>.<minor>.<patch> ) of your desired ActiveGate version |
<your_private_registry> | The address of your private registry |
<your_environment_domain_name> | Your own environment domain name (the URL without https:// ) |
<your_environment_ID> | Your environment ID |
Prerequisites
Working private registry
Access to the Dynatrace container registry
Run the following command:
1docker login -u <your-environment-ID> <your_environment_URL> -p <your-PaaS-token>
You need to replace
<your-environment-ID>
with the environment ID.<your-PaaS-token>
with PaaS token.
Pull, tag, and push the image
-
Pull the image.
Example command:
1docker pull <your_environment_domain_name>/linux/activegate:<activegate_version> -
Tag the image for your own registry.
Example command:
1docker tag <your_environment_domain_name>/linux/activegate:<activegate_version> <your_private_registry>/activegate:<activegate_version> -
Push the image to your own registry.
Example command:
1docker push <your_private_registry>/activegate:<activegate_version>