Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

Last synced: 8 days ago
JSON representation

PostGIS with ESRI add ons.

Awesome Lists containing this project

README

        

# beginor/postgis

Version info:

- PostgreSQL 16.x
- PostGIS 3.4.x
- TimeScaleDB 2.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:16-3.4
```