Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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"
```