Created
May 22, 2016 15:50
-
-
Save amis92/a4c76f4bdd5c22080a61b599fbe8e25c to your computer and use it in GitHub Desktop.
akcjamis DB Dockerfile
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
FROM starefossen/pgrouting:latest | |
RUN apt-get update && \ | |
apt-get install osm2pgrouting | |
# dane geoprzestrzenne mazowsza http://download.geofabrik.de/europe/poland/mazowieckie.html | |
RUN curl -s http://download.geofabrik.de/europe/poland/mazowieckie-latest.osm.bz2 \ | |
| bzip2 -dc \ | |
> /tmp/mazowieckie-latest.osm | |
RUN osm2pgrouting \ | |
--file "/tmp/mazowieckie-latest.osm" \ | |
--dbname "$POSTGRES_DB" \ | |
--prefixtables osm_ \ | |
--clean | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment