You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 7, 2020. It is now read-only.
I'm having some trouble to figure out the proper way to run the built container.
The recommended command docker run --restart=always -d -p 80:80 merlinnot/nominatim-docker
fails with the following message:
Unable to find image 'merlinnot/nominatim-docker:latest' locally
docker: Error response from daemon: manifest for merlinnot/nominatim-docker:latest not found.
See 'docker run --help'.
If I do: sudo docker run --restart=always -d -p 80:80 nominatim
It works, but the base href on HTML is set to the container ID, like: <base href="http://457fa9e123ba/" />
So, there seem to be two problems here:
merlinnot/nominatim-docker name doesn't work?
base href config is broken? CONST_Website_BaseURL should have hostname?
I was able to get around those problems by manually setting the container hostname: sudo docker run --restart=always -h 222.22.111.111/nominatim -d -p 80:80 nominatim
Perhaps you want to document this?
The text was updated successfully, but these errors were encountered:
Also, that's causing me trouble to run Nominatim on https. I'm using a nginx proxy in front of it, but I can't make the base href to have the https prefix.
That's an amazing project, thanks!
I'm having some trouble to figure out the proper way to run the built container.
The recommended command
docker run --restart=always -d -p 80:80 merlinnot/nominatim-docker
fails with the following message:
If I do:
sudo docker run --restart=always -d -p 80:80 nominatim
It works, but the base href on HTML is set to the container ID, like:
<base href="http://457fa9e123ba/" />
So, there seem to be two problems here:
merlinnot/nominatim-docker
name doesn't work?CONST_Website_BaseURL
should have hostname?I was able to get around those problems by manually setting the container hostname:
sudo docker run --restart=always -h 222.22.111.111/nominatim -d -p 80:80 nominatim
Perhaps you want to document this?
The text was updated successfully, but these errors were encountered: