Skip to content

Instantly share code, notes, and snippets.

@amir-rahnama
Created August 16, 2016 14:26
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save amir-rahnama/218805fe4f2537598d0b4d16877111fd to your computer and use it in GitHub Desktop.
Save amir-rahnama/218805fe4f2537598d0b4d16877111fd to your computer and use it in GitHub Desktop.
OSRM Docker-Compose file for a Stack with OSRM and Nominatim (Data container included)
osrm:
command: './start.sh Sweden http://download.geofabrik.de/europe/sweden-latest.osm.pbf'
image: 'irony/osrm5:latest'
ports:
- '5000:5000'
volumes_from:
- osrm-data
osrm-data:
image: 'irony/osrm5:latest'
volumes:
- /data
osrm-nominatim:
command: './start.sh Sweden http://download.geofabrik.de/europe/sweden-latest.osm.pbf'
image: 'helvalius/nominatim-docker-development:latest'
links:
- osrm
ports:
- '8080:8080'
volumes_from:
- osrm-data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment