Skip to main content

🚀 Update Existing Applications to Use the New enosix Docker Registry

Overview:

This guide describes how to update your Cloud Foundry application to use the enosix Docker registry for the Link image. You'll log in, select your org and space, identify the app to update, edit the app manifest, and push the changes.


Prerequisites​

  • Access to SAP BTP Cloud Foundry environment
  • Cloud Foundry CLI (Download)
  • Permissions to update and deploy applications

Step-by-Step Instructions​

  1. Log in to Cloud Foundry:
    cf login
  2. Select your organization and space.
  3. List your applications:
    cf apps
  4. Choose the app you want to update.
  5. Create an app manifest (if needed):
    cf create-app-manifest <app name>
  6. Edit the generated manifest.yaml file: Update the image property as follows:
    image: registry.docker.enosix.io/enosix/link:<tag>
    (Replace <tag> with the desired version or stable.)
  7. Push the updated manifest to Cloud Foundry:
    cf push -f <manifest file>

Example manifest.yaml Change​

docker:
image: registry.docker.enosix.io/enosix/link:stable

Additional Resources​