Docker container of the 3D City Database extended with pgPointCLoud and a dedicated sensor data schema.
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
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