mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
11 lines
178 B
Bash
11 lines
178 B
Bash
#!/bin/bash
|
|
IP="37.192.131.144"
|
|
PORT=5000
|
|
PATH="./pbf/"
|
|
REGION="siberian-fed-district-latest"
|
|
|
|
while :
|
|
do
|
|
osrm-routed -i $IP -p $PORT "$PATH/$REGION.osrm"
|
|
sleep 600
|
|
done
|