PostGIS
Definition
A PostGIS Resource is defined in convox.yml and linked to one or more Services. PostGIS extends PostgreSQL with spatial and geographic data types, functions, and indexes.
resources:
geodatabase:
type: postgis
services:
web:
resources:
- geodatabase
Containerized Options
Convox runs PostGIS as a container inside your Rack using the postgis/postgis Docker image. PostGIS is containerized-only -- there is no managed RDS equivalent.
For AWS RDS managed PostGIS, use the rds-postgres resource type with PostGIS extensions enabled at the RDS level. See the PostgreSQL resource documentation for RDS configuration options.
resources:
geodatabase:
type: postgis
options:
version: "16-3.4"
storage: 20
| Attribute | Type | Default | Description |
|---|---|---|---|
| version | string | 10-3.2 |
The PostGIS image tag (format: postgres_version-postgis_version) |
| storage | int | 10 |
The amount of persistent storage (in GB) |
Specify a recent version for production use. The default
10-3.2is the template fallback; most deployments should set an explicit version such as16-3.4or15-3.4.
Command Line Interface
Listing Resources
$ convox resources -a myapp
NAME TYPE URL
geodatabase postgis postgres://username:password@host.name:port/geodatabase
Getting Information about a Resource
$ convox resources info geodatabase -a myapp
Name geodatabase
Type postgis
URL postgres://username:password@host.name:port/geodatabase
Getting the URL for a Resource
$ convox resources url geodatabase -a myapp
postgres://username:password@host.name:port/geodatabase
Launching a Console
$ convox resources console geodatabase -a myapp
psql (16.2, server 16.2 (Debian 16.2-1+b1))
Type "help" for help.
geodatabase=#
Starting a Proxy to a Resource
$ convox resources proxy geodatabase -a myapp
Proxying localhost:5432 to host.name:port
Proxying allows you to connect tools on your local machine to Resources running inside the Rack.
Exporting Data from a Resource
$ convox resources export geodatabase -f /tmp/db.sql
Exporting data from geodatabase... OK
Importing Data to a Resource
$ convox resources import geodatabase -f /tmp/db.sql
Importing data to geodatabase... OK