postgis / docker-postgis

Docker image for PostGIS
https://hub.docker.com/r/postgis/postgis/
MIT License
1.37k stars 462 forks source link

No shp2pgsql in installation #222

Closed Jake-Gillberg closed 3 years ago

Jake-Gillberg commented 3 years ago

In trying to use this image to work through the postgis installation manual, I ran into the unexpected result of having to apt-get install postgis to get shp2pgsql.

phillipross commented 3 years ago

This is correct. In order to keep the container image small (optimal for scaling production environments) not all of the utilities or libraries available for postgis are currently included in the current image. Please see issue #224 for further reference.

The idea of maintaining multiple images exists which could effectively provide both smaller tighter images optimized for production as well as larger images that include more for development, demo environments, etc. Hopefully in the near future we can bootstrap some discussions around this and put a plan in place for accomplishing this 🤞

Jake-Gillberg commented 3 years ago

Thanks, makes sense!