-
Notifications
You must be signed in to change notification settings - Fork 10
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
Add postgis image #138
Add postgis image #138
Conversation
((newer_than=365*12*60*60)) | ||
curl -Ls https://registry.hub.docker.com/v2/repositories/postgis/postgis/tags?page_size=1024 | | ||
jq -r '[.results[] | select((.images | length) > 0 and (.last_updated | sub("\\.[0-9]+Z"; "Z") | fromdate) > (now - '"$newer_than"')) | {name: .name, digest: .images[0].digest}] | group_by(.digest) | map([.[].name] | join(",")) | .[]' | | ||
grep -v -e beta -e rc -e alpine |
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.
I really have no idea what is the policy for tags support.
I saw somewhere in the docs that alpine
version are not recommended. Feedbacks are welcome :)
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.
This looks great, nice work!
((newer_than=365*12*60*60)) | ||
curl -Ls https://registry.hub.docker.com/v2/repositories/postgis/postgis/tags?page_size=1024 | | ||
jq -r '[.results[] | select((.images | length) > 0 and (.last_updated | sub("\\.[0-9]+Z"; "Z") | fromdate) > (now - '"$newer_than"')) | {name: .name, digest: .images[0].digest}] | group_by(.digest) | map([.[].name] | join(",")) | .[]' | | ||
grep -v -e beta -e rc -e alpine |
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.
This looks great, nice work!
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.
let's call this just postgis
closing in favor of #139 as I couldn't figure out how to get the GHA workflow to run here. |
This PR fix #137
This add PostGIS image support to Tugboat and this is based on the PostgreSQL image.