docker-postgis
docker-postgis copied to clipboard
Docker image for PostGIS
In using the 12-3.0 image, I notice when running `postgis_full_version` that some core dependencies are somewhat ancient: ```POSTGIS="3.0.1 ec2a9aa" [EXTENSION] PGSQL="120" GEOS="3.7.1-CAPI-1.11.1 27a5e771" PROJ="Rel. 5.2.0, September 15th, 2018" LIBXML="2.9.4" LIBJSON="0.12.1"...
When upgrading from `postgis:12-2.5-alpine` to `postgis:12-3.0-alpine`, the command `update-postgis.sh` throws this error: ``` Updating PostGIS extensions 'template_postgis' to 3.0.2 NOTICE: extension "postgis" already exists, skipping WARNING: unpackaging raster WARNING: PostGIS...
I notice that the postgis extension of alpine variants are build from source, maybe we could use [multi-stage build](https://docs.docker.com/develop/develop-images/multistage-build/) to reduce overall size.
12-3.0 seems to have broken rasters due to changes in 3.0. Is there any chance of including it in the default install until another solution is decided #(187)?
#### Description: Add support for creating multiple databases when starting a container. This would be convenient for docker-compose. [Implementation in other container](https://github.com/mrts/docker-postgresql-multiple-databases/blob/master/create-multiple-postgresql-databases.sh). #### Example: ###### /docker-compose.yaml ```yaml version: '3.5' services:...
A bit of background, I'm running a restore against an old dump of a PostGIS database. # Original Error ``` pg_restore: [archiver (db)] Error while PROCESSING TOC: pg_restore: [archiver (db)]...
PROPOSAL ( updated at 2022-10-16 ) new workflow `github/workflows/buildx.yml` * for using a `docker buildx` ( qemu emulation ) for the non-AMD64 platforms * AMD64 is staying on the matured...
🚧🔧💡🧹 WIP: Experimental development: * 🧪🐳 test images (amd64 + arm64) for the users: https://hub.docker.com/r/imresamu/postgis * 🧪 internal amd64 only repo: https://hub.docker.com/r/imresamu/postgis-amd64/tags * 🧪 internal arm64 only repo: https://hub.docker.com/r/imresamu/postgis-arm64/tags *...
In the Alpine container perl is missing and this doesn't permit to use postgis_restore.pl. I suggest to add it.
Hi, In my production environment, postgis is installed into a schema called `postgis`. Now I'm using **postgis/postgis:10-3.0** but by default this image install postgis into the public schema. Is there...