• Stars
    star
    256
  • Rank 159,195 (Top 4 %)
  • Language
    Go
  • License
    Apache License 2.0
  • Created over 5 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Serverless reverse proxy for exposing container registries (GCR, Docker Hub, Artifact Registry etc) on custom domains.

Serverless Container Registry Proxy

This project offers a very simple reverse proxy that lets you expose your public or private Docker registries (such as Google Container Registry gcr.io, Google Artifact Registry (*.pkg.dev) or Docker Hub account) as a public registry on your own domain name.

You can also fork this project and customize as a middleware and deploy to Cloud Run or somewhere else since it’s a generic docker registry proxy.

Run on Google Cloud

For example, if you have a public registry, and offering images publicly with names such as:

docker pull gcr.io/ahmetb-public/foo
# or
docker pull us-central1-docker.pkg.dev/ahmetb-demo/ahmetb-demo/foo

you can use this proxy, and instead offer your images in a fancier way on a custom domain, such as:

docker pull r.ahmet.dev/foo

This project is a stateless reverse proxy, and can be deployed to a managed compute platform such as Cloud Run. It works by reverse proxying the Docker Registry API v2 requests to the underlying registry:

architecture diagram

It does not support "pushing"; however, as you push images to the underlying registry, you can serve them on your custom domain.

You are also free to fork this project and use it as a "customizable middleware" in front of your container image registry.

Building

Download the source code, and build as a container image:

docker build --tag gcr.io/[YOUR_PROJECT]/gcr-proxy .

Then, push to a registry like:

docker push gcr.io/[YOUR_PROJECT]/gcr-proxy

Deploying (to Google Cloud Run) for Google Container Registry (gcr.io)

You can easily deploy this as a serverless container to Google Cloud Run. This handles many of the heavy-lifting for you.

  1. Build and push docker images (previous step)
  2. Deploy to Cloud Run.
  3. Configure custom domain for Cloud Run service.
    1. Create domain mapping
    2. Verify domain ownership
    3. Update your DNS records
  4. Have fun!

To deploy this to Cloud Run, replace [GCP_PROJECT_ID] with the project ID of the GCR registry you want to expose publicly:

gcloud run deploy gcr-proxy \
    --allow-unauthenticated \
    --image "[IMAGE]" \
    --set-env-vars "REGISTRY_HOST=gcr.io" \
    --set-env-vars "REPO_PREFIX=[GCP_PROJECT_ID]"

This will deploy a publicly accessible registry for your gcr.io/[GCP_PROJECT_ID], which also needs to be public. If your GCR registry is private, see the section below on "Exposing private registries".

Then create a domain mapping by running (replace the --domain value):

gcloud run domain-mappings create \
    --service gcr-proxy \
    --domain [YOUR_DOMAIN]

This command will require verifying ownership of your domain name, and have you set DNS records for your domain to point to Cloud Run. Then, it will take some 15-20 minutes to actually provision TLS certificates for your domain name.

Pricing Note: Cloud Run has a generous free tier. When serving from GCR using this proxy, the layer blobs will not be served through this proxy (as they're downloaded from a signed GCS URL). This saves you a lot of "billable time" and "egress networking" costs.

Deploying (to Google Cloud Run) for Google Artifact Registry (*.pkg.dev)

Same instructions as GCR listed above. You need to just configure these environment variables differently:

  • REGISTRY_HOST: your regional AR domain (e.g. us-central1-docker.pkg.dev)
  • REPO_PREFIX: project ID + AR Repository name (e.g. ahmetb-demo/prod-images)

Warning: When using Artifact Registry, the layer blobs are downloaded through this proxy, and therefore will incur more costs on Cloud Run such as networking egress and longer execution times leading to higher "billable time".

Deploying (elsewhere)

...is much harder. You need to deploy the application to an environment like Kubernetes, obtain a valid TLS certificate for your domain name, and make it publicly accessible.

Using with other Docker Registries

If you set REGISTRY_HOST and REGISTRY_PREFIX environment variables, you can also use this proxy for other docker registries.

For example, to proxy docker pull ahmet/example to Docker Hub, specify environment variables:

  • REGISTRY_HOST=index.docker.io
  • REPO_PREFIX=ahmet

Note: This is not tested with registries other than Docker Hub and GCR/AR. If you can make it work with Azure Container Registry or AWS Elastic Container Registry, contribute examples here.

Exposing private registries publicly (GCR.io)

⚠️ This will make images in your private GCR registries publicly accessible on the internet.

  1. Create an IAM Service Account.

  2. Give it permissions to access the GCR registry GCS Bucket. (Or simply, you can give it the project-wide Storage Object Viewer role.)

  3. Copy your service account JSON key into the root of the repository as key.json.

  4. (Not ideal, but whatever) Rebuild the docker image with your service account key JSON in it. This will require editing Dockerfile to add COPY and ENV directives like:

    COPY key.json /app/key.json
    ENV GOOGLE_APPLICATION_CREDENTIALS /app/key.json
    ENTRYPOINT [...]
    

    You need to rebuild and deploy the updated image.

Configuration

While deploying, you can set additional environment variables for customization:

Key Value
REGISTRY_HOST specify hostname for target registry, e.g. gcr.io.
DISABLE_BROWSER_REDIRECTS if you set this variable to any value, visiting example.com/image on this browser will not redirect to [REGISTRY_HOST]/[REPO_PREFIX]/image to allow your users to browse the image on GCR. If you're exposing private registries, you might want to set this variable.
AUTH_HEADER The Authentication: [...] header’s value to authenticate to the target registry
GOOGLE_APPLICATION_CREDENTIALS (For gcr.io) Path to the IAM service account JSON key file to expose the private GCR registries publicly.

This is not an official Google project. See LICENSE.

More Repositories

1

kubectx

Faster way to switch between clusters and namespaces in kubectl
Go
14,832
star
2

kubernetes-network-policy-recipes

Example recipes for Kubernetes Network Policies that you can just copy paste
5,638
star
3

go-linq

.NET LINQ capabilities in Go
Go
3,501
star
4

kubectl-aliases

Programmatically generated handy kubectl aliases.
Shell
3,346
star
5

kubectl-tree

kubectl plugin to browse Kubernetes object hierarchies as a tree 🎄 (star the repo if you are using)
Go
2,950
star
6

cloud-run-faq

Unofficial FAQ and everything you've been wondering about Google Cloud Run.
Shell
2,313
star
7

gke-letsencrypt

Tutorial for installing cert-manager on GKE get HTTPS certificates from Let’s Encrypt (⚠️NOW OBSOLETE⚠️)
622
star
8

govvv

"go build" wrapper to add version info to Golang applications
Go
535
star
9

kubectl-foreach

Run kubectl commands in all/some contexts in parallel (similar to GNU xargs+parallel)
Go
451
star
10

go-dexec

It's like Go os/exec package but for Docker. What if you could exec programs remotely with the same interface as os/exec?
Go
424
star
11

runsd

Drop-in Service Discovery capabilities for Google Cloud Run.
Go
409
star
12

personal-dashboard

📊 Programmatically collecting and reporting various stats about myself daily
Go
337
star
13

gen-crd-api-reference-docs

API Reference Docs generator for Kubernetes CRDs (used by Knative, Kubeflow and others)
Go
294
star
14

wagl

🐝 DNS Service Discovery for Docker Swarm. Works out of the box. (NOW OBSOLETE, USE SWARM MODE)
Go
284
star
15

orman

lightweight and minimalist ORM for Java/Android. works with SQLite & MySQL. (not actively maintained)
Java
249
star
16

sheets-url-shortener

A simple short URL redirect service built on top of Google Sheets, and runs for cheap on Google Cloud Run serverless.
Go
180
star
17

RectangleWin

Spectacle/Rectangle for Windows: Hotkey-driven window snapping for Windows 10/11.
Go
174
star
18

In-Stock

📱 Is the new iDevice in town yet? (no longer maintained)
Objective-C
158
star
19

go-httpbin

http://httpbin.org endpoints for your Go tests
Go
121
star
20

dotfiles

Ahmet's dotfiles and macOS customizations
Shell
120
star
21

kubectl-extras

A collection of mini plugins for kubectl.
Shell
117
star
22

kubectl-pods_on

kubectl plugin to query Pods by Node names or selectors
Go
116
star
23

twitter-audit-log

Back up Twitter follow/mute/block lists periodically using GitHub Actions
Go
92
star
24

goodbye

Notify yourself when someone unfollows you on Twitter
Go
87
star
25

cloud-run-multi-region-terraform

Deploy a Cloud Run app to all available regions using Terraform.
HCL
80
star
26

azurefs

Mount Microsoft Azure Blob Storage as local filesystem in Linux (inactive)
Python
70
star
27

cloud-run-iap-terraform-demo

Deploy an IAP-secured application to Cloud Run using Terraform (e.g. an admin portal or internal company app)
HCL
69
star
28

baklava

Go
65
star
29

kubectl-cond

kubectl plugin to print Kubernetes resource conditions
Go
55
star
30

cloud-run-travisci

Example config for deploying from Travis CI to Google Cloud Run
Python
54
star
31

go-cursor

ANSI escape code helpers for Go
Go
53
star
32

public-speaking

@ahmetb's public speaking engagements & bio
52
star
33

multi-process-container-lazy-solution

Sample code accompanying the blog post:
Python
51
star
34

cloudrun-iamviz

Visualize call permissions between Cloud Run services
Go
48
star
35

serverless-url-redirect

Simple click-to-deploy serverless URL redirect service
Shell
39
star
36

goclone

Clone Go projects to a clean GOPATH and start hacking right away.
Shell
35
star
37

coffeelog

Sample multi-tier cloud-native application hosted on Google Kubernetes Engine (GKE)
Go
34
star
38

skaffold-from-laptop-to-cloud

Docker Voting App deployed to Kubernetes with Skaffold 3 different ways
JavaScript
32
star
39

multi-process-container

Example docker container image with multiple services supervised by s6 init process
Shell
29
star
40

cloud-run-static-outbound-ip

[DEPRECATED] Sample code for Cloud Run to use a static IP for outgoing requests via a SSH tunnel over a GCE instance
Python
29
star
41

dlog

Go library to parse the Docker Logs stream
Go
28
star
42

rundev

(alpha, contact me if you’re using)
Go
28
star
43

coredns-grpc-backend-sample

Sample CoreDNS gRPC proxy backend written in Go
Go
26
star
44

zone-printer

Small web app to print Google Cloud compute region it’s deployed to
Go
25
star
45

ytaudio

Go
25
star
46

turkish-deasciifier-java

Turkish deASCIIfier library for Java
Java
24
star
47

qs

URL query parameters from Go structs
Go
22
star
48

kcat

Syntax highlighting for Kubernetes manifests [WIP]
Go
19
star
49

cloud-run-deploy-via-api-go

Go
18
star
50

docker-registry-driver-azure

[⚠️DO NOT USE THIS - DEPRECATED ⚠️] Docker Registry – Azure Blob Storage Driver
Python
17
star
51

dailybbble

Archiving and serving what is popular on Dribbble every day
Python
13
star
52

twitch-bot

Go
13
star
53

docker-chocolatey

Chocolatey 'docker' package
PowerShell
12
star
54

comcasted

Are you being “Comcast-ed”? Test your speed every 5min and see if you're getting what you're paying.
Python
12
star
55

sorucevap

Go
11
star
56

open-diary-format

Because all diary keeping apps suck. Here's a standard format.
11
star
57

ytdl

Serverless video downloader app (using youtube-dl)
Go
11
star
58

Spark.NET

Wicked ▁▂▃▅▂▇ in your C# programs
C#
10
star
59

permalinker

Right click → Save to cloud → Permalink on your clipboard
Python
10
star
60

kubectl-runbridge

Go
9
star
61

radyo

a js radio plays similar tracks using last.fm & youtube. for my personal usage.
9
star
62

tfjs-cloudrun

JavaScript
9
star
63

kubernetes-secrets-propagation-delay

Go
8
star
64

leetcode-solutions

my solutions to http://leetcode.com/onlinejudge problems
Java
7
star
65

gophercon-ist

7
star
66

tmdb-downloader

Downloads tmdb movies data sequentially and saves to mongodb
Python
7
star
67

sample-bundle-deployment-controller

A sample CRD that deploys a bundle of arbitrary Kubernetes resources with pruning/kustomization capabilities.
Go
7
star
68

simplegauges

Practical time series gauges for daily stats (used in personal-dashboard project)
Python
6
star
69

kubectl-runproxy

🧪[experimental]☢️ a local k8s apiserver to make Cloud Run API work with kubectl (don't use this)
Go
4
star
70

cloudrun-socketio-whiteboard

JavaScript
4
star
71

mysqlbackup

simple python script to get gzipped mysql dumps with easy connection strings
4
star
72

hizlisozluk

Hizli Sozluk Android app
Java
3
star
73

futuremedium-resizer

a handy proportional image resizer and cropper for Java
Java
3
star
74

blobmetadb

Watches your application’s Microsoft Azure Blob Storage requests and keeps record of your blobs on Redis.
C#
3
star
75

instagger

Lamest tool ever. Adds and removes hashtags to your instagram posts.
Go
2
star
76

orman-demos

demo projects playground for orman framework
Java
2
star
77

permalinker-chrome

Chrome extension for Permalinker. Right click any image on the web → Save to cloud → Share link with friends
JavaScript
2
star
78

cs352project

a useless CS 352 CRUD term project. uploading only for code storage purposes.
PHP
2
star
79

orman-clickgame

a click game implemented with orman and sqlite
Java
2
star
80

github-activity-recorder

2
star
81

swap

file name swapping utility for Unix systems
C
2
star
82

home-ac-stats

Push stats from Sensibo AC controller to Google Cloud Monitoring
Go
2
star
83

runstatic

Go
1
star
84

krew-index-autoapprove

Go
1
star
85

blog-docker

Docker image for my blog's nginx server 🌵
Nginx
1
star
86

kubectl-colorful

Shell
1
star
87

rtmpsave

Listens to a RTMP stream, encodes to specified audio format and uploads audio to Azure Blob Storage
Go
1
star
88

yayinakisi

Yayin Akisi Android App
Java
1
star
89

colorify

colorify windows phone 7 app
C#
1
star