Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nisaacson/nominatim-docker
Standalone nominatim server in a docker container
https://github.com/nisaacson/nominatim-docker
Last synced: 7 days ago
JSON representation
Standalone nominatim server in a docker container
- Host: GitHub
- URL: https://github.com/nisaacson/nominatim-docker
- Owner: nisaacson
- Created: 2014-10-25T14:48:16.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-01-06T08:38:36.000Z (almost 8 years ago)
- Last Synced: 2024-10-31T14:25:43.818Z (14 days ago)
- Language: Shell
- Size: 199 KB
- Stars: 9
- Watchers: 4
- Forks: 54
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nominatom Docker
Run [http://wiki.openstreetmap.org/wiki/Nominatim](http://wiki.openstreetmap.org/wiki/Nominatim) in a docker container.
# Usage
```
docker pull nisaacson/nominatim-docker
```# Building
To rebuild the image locally execute
```
docker build -t nominatim .
```# Running
By default the container exposes port `8080` To run the container execute
```
# remove any existing containers
docker rm -f nominatim_container || echo "nominatim_container not found, skipping removal"
docker run -p 8080:8080 --name nominatim_container --detach nomintatim
```Check the logs of the running container
```
docker logs nominatim_container
```Connect to the nominatim webserver with curl. If this succeeds, open [http://localhost:8080/](http:/localhost:8080) in a web browser
```
curl "http://localhost:8080"
```