Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

52North/awi-nearrealtime-example-db

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ARCHIVED

This project is no longer maintained and will not receive any further updates. If you plan to continue using it, please be aware that future security issues will not be addressed.

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