-
Notifications
You must be signed in to change notification settings - Fork 482
Added postgresql 10 + postgis 2.4.0 #63
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
Conversation
…able and it doesn't seem to break anything. Postgis is still installed with postgresql-9.6-postgis-2.3
… postgresl-10 is `FROM debian:stretch`
@@ -8,7 +8,6 @@ RUN apt-get update \ | |||
&& apt-get install -y --no-install-recommends \ | |||
postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR=$POSTGIS_VERSION \ | |||
postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR-scripts=$POSTGIS_VERSION \ | |||
postgis=$POSTGIS_VERSION \ |
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.
Can we discuss this removal? I know they don't version this package name, so is the issue that only the 2.4 version is now available? If so, then I'd like to remove 2.3 entirely.
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.
Can you squash your commits? I think it would make sense to see a single commit for the 2.3 package upgrades (assuming we don't remove 2.3), another commit for adding the 2.4 images, and another commit for the updates to |
That would indeed make perfect sense, but my git-fu is lacking a bit. You could also just squash-merge the whole bunch, as the updates are a bit related: I didn't want to update the 2.3 images, but I had to cause they used outdated packages. Anyways, I'll give it a shot |
Resubmitted as #64 |
Added postgresql 10 + postgis 2.4.0, and postgresql 9.6 + postgis 2.4.0.
To get the postgis 2.3 builds passing, I had to remove line 11
postgis=$POSTGIS_VERSION \
from the template, as postgis 2.3 has been purged from the apt repo. I don't understand why postgis needs to be installed after postgresql-x-postgis-x is installed before, everything seem to just work without it. But as I don't understand why it was there, I can't really judge if it is a bad idea to remove it.As postgresl-10 is
FROM debian:stretch
, I modified the update script to take that into account