Skip to content

Geocodio/docker-osm2pgsql

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

docker-osm2pgsql

Note: This is a fork of https://github.com/openfirmware/docker-osm2pgsql that has been updated to use a newer base image and install a newer version of osm2pgsql

A Docker image with osm2pgsql, the tool for importing OpenStreetMap data into a Postgresql database. Intended to be used with openfirmware/docker-postgres-osm.

Build Instructions

Can be built from the Dockerfile:

docker build --build-arg OSM2PGSQL_VERSION=1.3.0 -t geocodio/osm2pgsql github.com/Geocodio/docker-osm2pgsql.git

Running osm2pgsql

Once the image is built, you can run a single-use container with osm2pgsql. Args will be passed to bash, so you will have access to environment variables in your run command.

docker run -i -t --rm geocodio/osm2pgsql -c 'osm2pgsql -h'

When used with a postgres-osm container, it can import data directly into the database:

docker run -i -t --rm --link postgres-osm:pg -v ~/osm:/osm geocodio/osm2pgsql -c 'osm2pgsql --create --slim --cache 2000 --database $PG_ENV_OSM_DB --username $PG_ENV_OSM_USER --host pg --port $PG_PORT_5432_TCP_PORT /osm/extract.osm.pbf'

For more information on running an import, please see TUTORIAL.markdown. If you have a particular scenario in mind, contact me and I will try to create a guide for that situation.

Todo

About

This Dockerfile was built with information from the Ubuntu 14.04 Switch2OSM guide.

Related Docker Images

Packages

No packages published

Languages

  • Dockerfile 75.2%
  • Makefile 24.8%