-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pinned registry to 2.6 #178
Conversation
@mrmrcoleman can you split into 2 commits please? I'd prefer first for the apache-utils with a message that it went away in 2.7. And the second pinning the image to 2.7 with a message along the lines of so it doesn't happen again ;). |
@mmlb It seems 2.7 doesn't work, 2.6 does. Want me to pin it there without the apk add? |
@mmlb Updated to show the steps in between. |
Since we are deriving a new custom image anyway, why don’t we use the later image and just add it back in? |
Adding this step to your custom Dockerfile would save your butt for when someone comes along and innocently bumps the version back up to 2.7.
|
@@ -1,4 +1,4 @@ | |||
FROM registry:2 | |||
FROM registry:2.6.2 | |||
RUN apk add --no-cache --update curl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A solution that would last the tests of time would be the following:
RUN apk add --no-cache --update curl apache2-utils
Instead of pinning to an earlier version.
I'm fine with either approach. Perhaps I misunderstood what @mmlb wanted to see? |
As we discussed during a chat this is blocking set up and people are asking all over what is going on. |
It looks like htpasswd was removed from the upstream registry image. Pinned to 2.7 and added apache2-utils.