Skip to content

Latest commit

 

History

History

extended-3dcitydb

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

extended-3dcitydb

Docker container of the 3D City Database extended with pgPointCLoud and a dedicated sensor data schema.

Getting started

Build the container:

docker build -t extended-3dcitydb .

Run the container:

docker run --name extended-3dcitydb -p 5432:5432 -d \
    -e SRID=25832 \
    -e HEIGHT_EPSG=7837 \
    -e SRS_NAME=urn:ogc:def:crs:EPSG::25832 \
    -e POSTGRES_DB=citydb \
    -e POSTGRES_USER=postgres \
    -e POSTGRES_PASSWORD=postgres \
    -e POSTGIS_SFCGAL=true \
  extended-3dcitydb

Admin

If you need an admin interface, start pgAdmin:

docker run --name pgadmin -p 8080:80 -d \
  -e [email protected] \
  -e PGADMIN_DEFAULT_PASSWORD=postgres \
  dpage/pgadmin4