Skip to content

52North/awi-nearrealtime-example-db

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AWI NearRealTime Example Database

Extract of the AWI NearRealTime database for development purposes.

Building

Just build the Docker image:

docker build -t awi/nearrealtime-example-db:latest .

Running

This image uses mdillon/postgis:9.6-alpine and postgres:9.6-alpine as it's base, so their configuration parameters apply to this image as well. Particulary the environment variables POSTGRES_DB, POSTGRES_USER, and POSTGRES_PASSWORD should be supplied:

docker run --rm -it -p 5432:5432 \
  -e POSTGRES_DB=nearrealtime \
  -e POSTGRES_USER=postgres \
  -e POSTGRES_PASSWORD=postgres \
  awi/nearrealtime-example-db:latest