TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Container registry on a budget using AWS S3

23 pointsby mborchabout 3 years ago

8 comments

xrdabout 3 years ago
I run multiple registries using dokku. It&#x27;s very easy and you can host whatever else you want on dokku.<p><pre><code> dokku apps:create registry dokku git:from-image registry dokku proxy:ports-remove http:5000:5000 dokku proxy:ports-add http:80:5000 dokku nginx:set client-max-body-size 1000m dokku ps:restart dokku proxy:report </code></pre> I made mine be public on one host and private with http htpasswd access. This requires changing the nginx file. But it works great.
nhoughtoabout 3 years ago
What registry features do you lose doing it this way? a normal registry isn&#x27;t just serving dumb files is it? It is essentially an API that can find images by tags, sha256 etc against a backend. It manages lifecycling of things as they are replaced etc.<p>I imagine you could live without or substitute some of these features but are there any showstoppers?
评论 #30513333 未加载
评论 #30506489 未加载
laurenceroweabout 3 years ago
If using AWS why not just use ECR? <a href="https:&#x2F;&#x2F;aws.amazon.com&#x2F;ecr&#x2F;" rel="nofollow">https:&#x2F;&#x2F;aws.amazon.com&#x2F;ecr&#x2F;</a>
评论 #30506102 未加载
评论 #30506069 未加载
charcircuitabout 3 years ago
&gt;using S3<p>He doesn&#x27;t use AWS S3, but instead digital ocean spaces.
boxingrockabout 3 years ago
running a kubernetes cluster is what bloggers call &quot;technology minimalism&quot; these days? joking aside, i&#x27;ve been trying to find some time to mess around with nerdctl&#x27;s ipfs functionality, seems like it may be a better fit for smaller teams and the self-hosters out there.
everlastx1about 3 years ago
fyi: <a href="https:&#x2F;&#x2F;container-registry.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;container-registry.com&#x2F;</a> is offering free private repos for individuals and small teams.
jiuxabout 3 years ago
My poor-man’s container registry: Linux box + SSH + makefile
评论 #30511585 未加载
ei8thsabout 3 years ago
i just run mine on my raspberry pi, use ddns and allow specific servers to access it...thats a budget.