valhalla / docker

docker
MIT License
17 stars 22 forks source link

What data is placed in VALHALLA_DOCKER_DATAPATH #31

Closed sindile closed 6 years ago

sindile commented 6 years ago

From the documentation there is reference to a data path VALHALLA_DOCKER_DATAPATH=/some/path/to/data docker-compose -f docker-compose-{ppa|source}.yml up

What is not clear to me is whether:

  1. I put .pbf file or
  2. I put tiles. If it is tiles how do I generate them.
kevinkreiser commented 6 years ago

It is the latter. You generate them with the valhalla_build_tiles program which is also available inside the container. You can use docker run to build the tiles from inside the container and then start the service in the container afterwards.

sindile commented 6 years ago

Thank you.