{"id":17288868,"url":"https://github.com/stepankuzmin/osrm-docker","last_synced_at":"2026-04-18T10:33:27.112Z","repository":{"id":145298885,"uuid":"69362807","full_name":"stepankuzmin/osrm-docker","owner":"stepankuzmin","description":"Open Source Routing Machine (OSRM) Docker Image 🐳","archived":false,"fork":false,"pushed_at":"2017-04-27T13:10:25.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-26T18:15:35.727Z","etag":null,"topics":["docker","osrm"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stepankuzmin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-09-27T14:01:08.000Z","updated_at":"2019-03-19T11:07:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"e0eeab2a-d200-4a6c-a45b-b1dc154b3314","html_url":"https://github.com/stepankuzmin/osrm-docker","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/stepankuzmin/osrm-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepankuzmin%2Fosrm-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepankuzmin%2Fosrm-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepankuzmin%2Fosrm-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepankuzmin%2Fosrm-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stepankuzmin","download_url":"https://codeload.github.com/stepankuzmin/osrm-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stepankuzmin%2Fosrm-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31965919,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","osrm"],"created_at":"2024-10-15T10:30:35.932Z","updated_at":"2026-04-18T10:33:27.097Z","avatar_url":"https://github.com/stepankuzmin.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OSRM Docker\n\n[![Build Status](https://travis-ci.org/stepankuzmin/osrm-docker.svg?branch=master)](https://travis-ci.org/stepankuzmin/osrm-docker)\n[![Docker Stars](https://img.shields.io/docker/stars/stepankuzmin/osrm.svg)]()\n[![Docker Pulls](https://img.shields.io/docker/pulls/stepankuzmin/osrm.svg)]()\n[![Docker Automated buil](https://img.shields.io/docker/automated/stepankuzmin/osrm.svg)]()\n\n[The Open Source Routing Machine](https://github.com/Project-OSRM/osrm-backend) is a high performance routing engine written in C++11 designed to run on OpenStreetMap data.\n\n```shell\ndocker run -d -p 5000:5000 stepankuzmin/osrm \u003curl\u003e \u003cprofile\u003e\n```\n\nWhere `\u003curl\u003e` is osm.pbf url and `\u003cprofile\u003e` is one of the [OSRM profiles](https://github.com/Project-OSRM/osrm-backend/tree/master/profiles) (`foot` is default) or one of above:\n\n* stepless - default foot profile excluding `steps`.\n\n## Features\n\n* Custom profiles\n* [LuaSQL](https://keplerproject.github.io/luasql/) with PostgreSQL support\n\n## Usage:\n\nThis will create docker container with mapzen extract processed using default car profile\n\n```shell\ndocker run -d -p 5000:5000 stepankuzmin/osrm \"https://s3.amazonaws.com/metro-extracts.mapzen.com/moscow_russia.osm.pbf\" car\n```\n\nYou can also mount a host directory as a data volume:\n\n```shell\ndocker run -d \\\n  -p 5000:5000 \\\n  -v /srv/osrm/data:/data \\\n  -v /srv/osrm/extracts:/extracts \\\n  -v /srv/osrm/profiles:/profiles \\\n  --name osrm \\\n  stepankuzmin/osrm\n```\n\nThis command mounts the host directory, `/srv/osrm/data`, into the container at `/data`, `/srv/osrm/extracts` into `/extracts` and `/srv/osrm/profiles` into `/profiles`.\n\nYou can run OSRM with custom profiles with:\n\n```shell\ndocker create \\\n  -p 5000:5000 \\\n  --name osrm \\\n  stepankuzmin/osrm \\\n  \"https://s3.amazonaws.com/metro-extracts.mapzen.com/moscow_russia.osm.pbf\" sidewalks\n\ndocker cp sidewalks.lua osrm:/profiles/\ndocker start osrm\n```\n\n## Documentation\n\n- [osrm-routed HTTP API documentation](https://github.com/Project-OSRM/osrm-backend/blob/master/docs/http.md)\n\nRunning a query on your local server:\n\n```\ncurl http://127.0.0.1:5000/route/v1/driving/13.388860,52.517037;13.385983,52.496891?steps=true\u0026alternatives=true\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstepankuzmin%2Fosrm-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstepankuzmin%2Fosrm-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstepankuzmin%2Fosrm-docker/lists"}