-
Notifications
You must be signed in to change notification settings - Fork 469
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
Specific tags for each Postgis version #26
Comments
@edwardsamuel I agree with you in theory, but there are difficulties with doing this in practice. This was discussed in #8, particularly from this comment onward. |
Since I've been asked this question a few times, I'd like to elaborate what the difficulties are with maintaining multiple tags. The main problem is that the Since this image is linked in Docker Hub to the Another thing that makes me hesitant to have more specific tags is that Docker Hub doesn't gracefully support multiple tags for the same branch and Dockerfile. For example, if I want to have both "9.6", "9.6-2.3", and "latest" point to to We could potentially work around the first and second issue by removing the The biggest problem with me maintaining multiple tags is that I have very limited time to maintain this image. I don't actually use the image myself anymore, so I'm mainly maintaining it to support the existing users since this seems to be one of the more popular "postgis" images on Docker Hub. If Docker Hub supported renaming or redirecting existing images, I would be happy to transition this image to some sort of community maintenance, but as it is the image has to remain "mdillon/postgis" to avoid disrupting things for users (not to mention the fact that Docker's automated builds have been broken for this image ever since I renamed the GitHub repo from |
See previous discussion in #18 as well. |
I think it is better to have specific tags for each Postgis version, like:
9.1-2.1
9.2-2.1
9.3-2.1
9.4-2.1
9.5-2.1
9.4-2.2
9.5-2.2
9.4
--> using PostgreSQL 9.4 and latest Postgis version9.5
--> using PostgreSQL 9.5 and latest Postgis versionThis to make sure the other images those depend on this will not broken.
The text was updated successfully, but these errors were encountered: