Closed mtfurlan closed 2 years ago
Would a PR to compile gdal with postgres support be appreciated?
My personal opinion: yes.
But this is only a preliminary opinion; and the final decision is not mine.
If so, which dockerfiles should be modified?
./Dockerfile.master.template
buildpack-deps
docker images with: docker pull buildpack-deps
make update
git status
modified: Dockerfile.master.template
modified: 13-master/Dockerfile
<--- generated from the template - with the latest commitsmodified: 14-master/Dockerfile
<--- generated from the template - with the latest commitsPlease add the "current" and the "new" image size ( so we can calculate the increase )
for example the current size: 891MB
$ docker images postgis/postgis:14-master
REPOSITORY TAG IMAGE ID CREATED SIZE
postgis/postgis 14-master a00012b8f66a 12 hours ago 891MB
14-master goes from 891MB to 898MB (8MB difference) and 13-master from 888MB to 895MB (7MB difference).
What's the difference between $version-master
and $version
and $version-alpine
tagged images, and when should each be used?
It wasn't clear to me from the readme on either github or dockerhub, so I just kinda chose 14-master at random.
I would expect gdal to be compiled with postgres support in all of the images though, as these are docker images specifically for postgis. Why is gdal even present if it can't talk to postgis?
What's the difference between $version-master and $version and $version-alpine tagged images, and when should each be used?
imho:
I would expect gdal to be compiled with postgres support in all of the images though, as these are docker images specifically for postgis.
imho: please verify - the postgis/postgis:14-3.1
is working?
Why is gdal even present if it can't talk to postgis?
Postgis raster support. https://github.com/postgis/postgis/search?p=2&q=gdal
Thanks for the clear summary.
Looks like
gdal-bin
gdal-tools
So I'm thinking maybe we shouldn't worry about the gdal tools being compiled with postgres in this repo, and I'll go extend the debian image on my own.
If anyone feels strongly feel free to reopen, I can still do a PR.
I want to import a geojson file into a table. The command I found used ogr2ogr from gdal, but this docker image doesn't compile gdal with postgres support.
Would a PR to compile gdal with postgres support be appreciated?
If so, which dockerfiles should be modified?