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.
- Host: GitHub
- URL: https://github.com/beginor/docker-postgis
- Owner: beginor
- Created: 2017-05-17T04:54:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-06-05T09:01:50.000Z (about 2 years ago)
- Last Synced: 2025-02-01T18:27:56.776Z (over 1 year 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 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
```