> ## Documentation Index
> Fetch the complete documentation index at: https://enterprise-docs.dify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Docker Registry

## Find the Docker Registry configuration in the Helm Chart Values

### Display Helm Chart Values

```bash theme={null}
helm show values dify/dify
```

This is an example of the Docker Registry configuration in the Helm chart values.
You can set the image repository and tag in the Helm chart values.

```yaml theme={null}
api:
  image:
    repository: langgenius/dify-api
    tag: "x.x.x"
  ... ...
```

## How to sync images to your private registry

You can sync the images to your private registry using the `sync.sh` script. Dify images support ARM64 and AMD64 architectures.

> Clickhere to download the `sync.sh` script.

### Set shell variables

Edit the `sync.sh` file and set the following variables:

* `REGISTRY_URL`: The URL of your private registry
* `NAMESPACE`: The namespace of your private registry

### Sync images

Before syncing the images, you need to login to your private registry first.

```bash theme={null}
# ./sync.sh <image> <version>
./sync.sh dify-api x.x.x
```
