Hi again, from <https://docs.airbyte.io/integratio...
# ask-community-for-troubleshooting
i
Hi again, from https://docs.airbyte.io/integrations/custom-connectors#adding-your-connectors-in-the-ui I read
1.Get the
Docker
coordinate of a custom connector from
Dockerhub
(or any image repository that Airbyte can access).
Can somebody tell me which image repositories that includes? Specifically, is there a way to use private repo like AWS? Thanks!
โœ… 1
s
as long as the underlying
docker
daemon has access to the repo it should work
i
okay thanks, I'm not super familiar with docker yet so I'll have a look ๐Ÿ˜‰
j
The AWS ECR docker repository requires a docker-login step, where you use your AWS credentials to login to the repository. Once you do that, the docker daemon can pull images from there, for the duration of that login session. Amazon was working on standardizing this to work with the newer versions of docker so that it could login automatically, but I donโ€™t know how far they got in standardization. Do some research in the aws docs. You might have to write some infrastructure tooling to ensure the login step happens at the time you need.
Once the login step has happened, you can treat the ECR repository urls just like public urls.
i
Perfect, thank you. ๐Ÿ™‚