Run Geocoder locally using openstreetmap

July 28, 2025
osm
Understand how you can use docker to run geocoding service completely local using openstreetmap data. we use nominatim service for API structure
Run Geocoder locally using openstreetmap

docker command

 

docker run -it \
  -e PBF_URL=https://download.geofabrik.de/asia/gcc-states-latest.osm.pbf \
  -e REPLICATION_URL=https://download.geofabrik.de/asia/gcc-states-updates/ \
  -p 8080:8080 \
  --name nominatim \
  mediagis/nominatim