docker-postgis
docker-postgis copied to clipboard
Docker image for PostGIS
Hi! I'm trying to run postgis but when I'm starting the container I receive the following warning: > Status: Downloaded newer image for postgis/postgis:latest > WARNING: The requested image's platform...
It seems like this should be included in the official docker repository, but it doesn't seem to be anywhere. Is it omitted on purpose? Why? What's the easiest way to...
Hi, Are there any plan to migrate from bullseye to bookworm ? How can we help ? I am interested in using GEOS 3.11 features (for example [ST_SimplifyPolygonHull](https://postgis.net/docs/ST_SimplifyPolygonHull.htm)), which is...
发现有类似的Issues问题 https://github.com/postgis/docker-postgis/issues/358 我使用的版本是12-3.4 此问题出现在自行构建docker-image的时候, 而通过docker pull拉取的是没有问题的 经过排查 发现initdb-postgis.sh存在问题 如下所示${psql[@]}存在为空的情况, 我不知道这个值是什么时候写入的,固增加前置判断处理 ```shell #!/bin/bash set -e # Perform all actions as $POSTGRES_USER export PGUSER="$POSTGRES_USER" # 这里增加了psql空的处理 if [ -z "${psql[@]}" ]; then...
See https://github.com/wagoodman/dive#ci-integration Reason: https://github.com/postgis/docker-postgis/issues/339#issuecomment-1416830159 ( Alpine WastedBytes = 263 MB ! )
Hi all, I don't know why, but run postgis with docker run is so easy, but with docker compose so hard u.u This works great: ``` docker run -d -p...
It would make it a bit easier to use the alpine image without caring of the specific version, e.g. `latest-alpine` Thanks!
I noticed that the docker-postgis alpine images are far too big eg: `postgis/postgis 13-3.3-alpine a21d01173429 2 weeks ago 556MB` ### Cause The Dockerfile does not use a multi-staged build. ###...
Hi all, actually for some reason the extension SFCGAL is not created in the debian version, I'm testing in the ```postgis/postgis:latest``` version. Create the extension works! Thx!
I need to create an ssh tunnel, before I can get a dump of a dev db. This involves installing openssh and running ssh. While I can do the installs...