duckdb-postgis 0.2.6

A library for transforming geospatial data using DuckDB and ingesting it into a PostGIS database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
services:
  geodatabase:
    image: postgis/postgis:16-3.4
    container_name: gridwalk-geodatabase
    platform: linux/amd64
    volumes:
      - ./local/postgresql/data:/var/lib/postgresql/data
    environment:
      POSTGRES_DB: gridwalk
      POSTGRES_USER: admin
      POSTGRES_PASSWORD: password
    ports:
      - "5432:5432"