2017-07-19 14:09:19 +02:00
Docker: [](https://microbadger.com/images/thomasnordquist/photon-geocoder "Get your own image badge on microbadger.com") [](https://hub.docker.com/r/thomasnordquist/photon-geocoder/) [](https://microbadger.com/images/thomasnordquist/photon-geocoder "Get your own version badge on microbadger.com")
Github:
2017-07-19 12:54:37 +02:00
[](https://github.com/thomasnordquist/photon-docker/issues) [](https://github.com/thomasnordquist/photon-docker/stargazers) [](https://github.com/thomasnordquist/photon-docker/network)
2017-07-19 14:09:19 +02:00
Have your own geocoder up and running within the hour, you will require about 60GB of disk space and has no further dependencies.
Feel free to fork and improve.
2017-07-19 12:54:37 +02:00
# Run
The image itself is pretty small, the first time the container is executed, a 30GB searchindex will be downloaded.
The data volume is exposed as `/photon/photon_data` and can be mounted, this way you'll only have to download the data once.
## With `docker run`
2017-07-19 14:09:19 +02:00
```bash
2017-07-19 12:54:37 +02:00
docker run -p 2322:2322 -it thomasnordquist/photon-geocoder:latest
```
2017-07-19 14:09:19 +02:00
## Search
```
http://localhost:2322/api?q=berlin
```
*For more details on the API check the photon [github repository ](https://github.com/komoot/photon ).*
## Build from git
2017-07-19 12:54:37 +02:00
https://github.com/thomasnordquist/photon-docker
### With docker-compose
2017-07-19 14:09:19 +02:00
```bash
docker-compose build #optional
2017-07-19 12:54:37 +02:00
docker-compose up
```
*Note: if you abort the download, you have to remove the volume `photon_data` before restarting the container*
2017-07-19 14:09:19 +02:00
### With `docker build`
```bash
docker build --tag thomasnordquist/photon-geocoder .
2017-07-19 12:54:37 +02:00
```
## FAQ
- How do I pass arguments to the `photon.jar` ?
*The entrypoint accepts arguments for the `photon.jar`, you can invoke it by using `docker exec`*
- Do I need to have nominatim ?
*The container downloads the latest prebuilt search index, there is no immediate need to have nominatim installed.*
- What is photon ?
2017-07-19 14:09:19 +02:00
*photon is a geocoder, check out [their website](https://photon.komoot.de/) and their [github repository](https://github.com/komoot/photon)*