Hi all, another question.. as the PR reviews are g...
# help-connector-development
l
Hi all, another question.. as the PR reviews are going slowly due to holidays, and the modifications I need to do to the google ads and bing ads sources, what is the best way to manage it? Should I copy them so there would be one mine and the original one or should I just modify the existing one? and after I modify it, how I load it to my client´s airbyte open source?
s
you can publish it to docker hub and then in settings load a new custom source and specify the docker hub location where you pushed your image
l
Hi, I have no idea.. I created my own development environment. I need somehow to connect to this new source in my customer´s open source airbyte.. Can you specify?
s
are you familiar with building a docker image of a connector and publishing that docker image on docker hub?
inside the connector directory you run
docker build -t laila/my-connector:0.1.5 .
and then run
docker push laila/my-connector:0.1.5
assuming your docker hub username is
laila
l
Hi, I just did that. What next?
@Sam Stoelinga thank you so much! I managed to pull data
s
Nice you figured it out!