Private registries

Release's private registry functionality and how to set it up

Release integrates with private image registries so that you can pull images from your private image registries during builds.

Only account owners may create or edit private registry integrations.

Click on the Setup button to view the integration modal.

To use images stored in your private registry, add your host, username, and password and click Save.

Then set your image in the Application Template:

services:
- name: your-special-service
  image: yourprivateregistryaccount/image:tag

The service your-special-service cannot have the build or has_repo keys. Those keys indicate that Release has built the image and Release will not attempt to pull the image from your private registry.

Last updated