# Pulling Docker from Private Repository on Docker Hub

If your docker is hosted as private repository on Docker Hub, following the below steps to install the same using Helm

1. Create a Docker Hub secret in your namespace. On Rancher select your namespace, and navigate to Secrets -> Create -> Registry -> DockerHub. Provide
   * `Name`: Name of the secret (*arbitrary*)
   * `Username`: Docker Hub user id
   * `Password`: [User access token](https://docs.docker.com/security/for-developers/access-tokens/) (Make sure original password is NOT given here)
2. While deploying via Helm add the following into the Helm YAML

```yaml
image:
    pullPolicy: Always
    repository: openg2p/<your docker repository name>
    tag: <docker tag>
    pullSecrets: <name of the secret>
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.openg2p.org/1.3/deployment/deployment-guide/pulling-docker-from-private-repository-on-docker-hub.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
