Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

Custom domain name to serve Python packages from Google Artifact Registry?

we're serving Python packages through Google's Artifact Registry. Actually the URL is the "default" one, so


https://[REGION].pkg.dev/[PROJECT_ID]/.....

but what if we wanted to use a custom domain name? For example we'd like to serve packages from a custom domain link like

https://[MY-CUSTOM-DOMAIN]/...

Is there an official way to do that? What are my options?

0 2 594
2 REPLIES 2

There is no official support for custom domains in AR but you can run a reverse proxy on Cloud Run (which supports Custom domains). This article might help https://cloud.google.com/blog/topics/developers-practitioners/hack-your-own-custom-domains-container...

@abdelfettah Thank you so much for your answer, I'll look after the link you posted