Ishan Anilbhai Koradiya
05/31/2024, 3:43 AMkapa.ai
05/31/2024, 3:43 AMmarkdown 1. Build the connector: ```sh ./gradlew :airbyte-integrations:connectors:source-custom-name:build
2. Tag the image. 3. Add it as a custom connector in the UI → settings → source → custom connector. ([Source](<https://discuss.airbyte.io/t/1812>)) 4. **Push to Private Docker Registry**: - If you are using a private Docker registry, ensure that your connector image is pushed to the registry: ```markdown 1. Build and tag your connector image locally: ```sh docker build . -t my-custom-connectors/source-custom:0.1.0
2. Create your image tag with the docker tag
command. 3. Push the image to your private Docker registry: sh docker push <image-name>:<tag>
``` ([Source](https://docs.airbyte.com/operator-guides/using-custom-connectors#3-push-your-connector-image-to-your-private-docker-registry)) By following these steps, you should be able to update the Docker image URL and tag for your source in Airbyte. If you encounter any issues, you can refer to the relevant forum posts and documentation for further guidance.