Created
August 16, 2016 14:26
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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