Describe the stack
I currently run a docker repository on a local machine accessible via a cloud flare tunnel. Given the "iffy-ness" of my network connection, I would prefer to have a more stable, high-bandwidth repository. Thus, as a cloudflare worker. This is what it entails to create a docker repository:
sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
sudo docker run -d -p 5000:5000 --name my-registry registry:2
Describe the stack
I currently run a docker repository on a local machine accessible via a cloud flare tunnel. Given the "iffy-ness" of my network connection, I would prefer to have a more stable, high-bandwidth repository. Thus, as a cloudflare worker. This is what it entails to create a docker repository: