An open API service indexing awesome lists of open source software.

https://github.com/beginor/docker-postgis

PostGIS with ESRI add ons.
https://github.com/beginor/docker-postgis

Last synced: 5 months ago
JSON representation

PostGIS with ESRI add ons.

Awesome Lists containing this project

README

          

# beginor/postgis

Version info:

- PostgreSQL 17.x
- PostGIS 3.7.x
- pgvector

Example usage:

```sh
if [ ! -d "$(pwd)/postgis/data" ]; then
mkdir -p "$(pwd)/postgis/data"
fi

docker run \
--detach \
--name postgis \
--env POSTGRES_PASSWORD=YOUR_PASSWORD \
--volume $(pwd)/postgis/data:/var/lib/postgresql/data \
--publish 5432:5432 \
--restart unless-stopped \
--hostname postgis \
beginor/postgis:17-3.5
```