Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mborne/docker-postgis
[DOCKER] Official postgres image extended with postgis and pgrouting (DEPRECATED : see postgis/postgis)
https://github.com/mborne/docker-postgis
docker pgrouting postgis
Last synced: 3 months ago
JSON representation
[DOCKER] Official postgres image extended with postgis and pgrouting (DEPRECATED : see postgis/postgis)
- Host: GitHub
- URL: https://github.com/mborne/docker-postgis
- Owner: mborne
- Created: 2018-09-15T14:53:39.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-13T18:01:59.000Z (7 months ago)
- Last Synced: 2024-10-08T15:13:50.110Z (3 months ago)
- Topics: docker, pgrouting, postgis
- Language: Dockerfile
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-postgis
**DEPRECATED : see [postgis/postgis](https://hub.docker.com/r/postgis/postgis) public image**
## Description
Docker image running [PostgreSQL](https://hub.docker.com/_/postgres) with [PostGIS](https://postgis.net/) and [pgRouting](https://pgrouting.org/) extensions.
## Usage
* Start postgis : `docker-compose up -d`
* Configure environment (`~/.profile`)
```bash
export PGHOST=localhost
export PGUSER=postgis
export PGPASSWORD=postgis
```* Create gis database
```bash
createdb gis
psql -d gis -c "CREATE EXTENSION postgis"
```## Tuning
See :
* [pgtune.leopard.in.ua](http://pgtune.leopard.in.ua/)
* [urator.cybertec.at](http://pgconfigurator.cybertec.at/)