- Clone https://github.com/EIDA/routing
- Copy contents of this repository into directory containing routing service
- Go to the directory containing routing service
- Run
docker-compose -p 'routing' up -d --no-deps --build
- Add crontab entry to update the service autimatically (see below) or
docker exec -it routing_eida_routing_1 bash
and run it manually
Please keep in mind that container name (routing_eida_routing_1
) migh change.
# Update the EIDAWS-Routing Web Service (run the updateAll.py script and restart the Docker)
0 6 * * * docker exec routing_eida_routing_1 bash -c "cd /data/routing/data/ && ./updateAll.py -l INFO > /data/routing/data/updateAll.log 2>&1" && docker restart routing_eida_routing_1 2>&1