Re: [OSRM-talk] Docker pre-processing from a python script

2019-07-15 Thread Silvia Oviedo
It worked, thank you! El jue., 11 jul. 2019 a las 16:01, Daniel Patterson via OSRM-talk (< osrm-talk@openstreetmap.org>) escribió: > I would recommend reading up on how the `subprocess.run()` function works > in Python. Based on the error, it looks like you need to do: > >

Re: [OSRM-talk] Docker pre-processing from a python script

2019-07-11 Thread Silvia Oviedo
Thank you for the suggestion. however I get : /usr/local/bin/docker: Error response from daemon: OCI runtime create failed: container_linux.go:344: starting container process caused "exec: \"osrm-extract -p /opt/car.lua /data/berlin-latest.osm.pbf\": stat osrm-extract -p /opt/car.lua

Re: [OSRM-talk] Docker pre-processing from a python script

2019-07-10 Thread Daniel Patterson via OSRM-talk
It'd be something like this (untested): subprocess.run(["docker","run","-t","-v", "%s:/data" % os.getcwd(), "osrm/osrm-backend", "osrm-extract -p /opt/car.lua /data/berlin-latest.osm.pbf"]) daniel On Wed, Jul 10, 2019 at 7:22 AM Silvia Oviedo wrote: > > Hi all, > > I would like to run the

[OSRM-talk] Docker pre-processing from a python script

2019-07-10 Thread Silvia Oviedo
Hi all, I would like to run the pre-process of the car profile from a python script. I have checked the documentation of subprocess library and docker SDK for python but I don´t know how to properly make the request. For example, how could I transform the sh request: docker run -t -v