Vroom + ORS
For a recent work project I have been using openrouteservice and the Vehicle Routing Open-source Optimization Machine (vroom) to conduct a route analysis for a client interested in evaluating new warehouse locations for shipping. Configuring this software gave me a huge amount of trouble - I was finally able to get things working using the info below, which I also posted at https://github.com/VROOM-Project/vroom-docker/issues/27. As an absolute novice at Docker I suffered for many hours trying to set up Vroom + openrouteservice and finally got my installation working. Here are the main things I needed to fix to get this to work: ors and vroom must be on the same Docker network to talk to each other. You can do this in two ways: either start both containers separately, creating a new docker network via the docker network create command, and then connect both containers to the network using the docker network connect commend. even better, add vroom to the ORS docker-compose file. I…