Ecosyste.ms: Awesome
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: 8 days ago
JSON representation
PostGIS with ESRI add ons.
- Host: GitHub
- URL: https://github.com/beginor/docker-postgis
- Owner: beginor
- Created: 2017-05-17T04:54:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-05T09:01:50.000Z (5 months ago)
- Last Synced: 2024-06-06T09:28:23.505Z (5 months ago)
- Language: Shell
- Size: 28.3 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# beginor/postgis
Version info:
- PostgreSQL 16.x
- PostGIS 3.4.x
- TimeScaleDB 2.x
- pgvectorExample usage:
```sh
if [ ! -d "$(pwd)/postgis/data" ]; then
mkdir -p "$(pwd)/postgis/data"
fidocker 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
```