Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 683 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 683 Bytes

Tiler-DB

PostGIS database container to store the osm-seed or osm data for tiling.

Configuration

In order to run this container we need environment variables, these can be found in the following files👇:

Note: Rename the above files as .env.tiler-db

Running tiler-DB container

  # Docker compose
  docker-compose tiler-db

  #Dcoker 
  docker run \
    --env-file ./envs/.env.db-tiler \
    --network osm-seed_default \
    -v ${PWD}/data/tiler-db-data:/mnt/data \
    -p "5433:5432" \
    -t osmseed-tiler-db:v1

Test tiler-DB connection

  pg_isready -h 0.0.0.0 -p 5433