problem of using docker to set up map
I just run the docker of Tile Sever, Geocoding Server and three routing servers. I don't know how to follow the instruction in the installation guide:
"Now, inside the file webarena/openstreetmap-website/vendor/assets/leaflet/leaflet.osm.js, change http://ogma.lti.cs.cmu.edu:8080/tile/{z}/{x}/{y}.png to http://
I would like to ask how you set up the step before setting up the problem you mentioned? I tried to docker volume create osm-tiles and put the osm-data in the downloaded tar file in the volume folder and the following docker command before: docker run --volume=/var/lib/containers/storage/volumes/osm-data:/data/database/ --volume=/var/lib/containers/storage/volumes/osm-tiles:/data/tiles/ -p 8080:80 --detach=true overv/openstreetmap-tile-server run
However, the container exited immediately after a few seconds. I don't know what caused it. I would like to ask what you did before
It looks like we need to import the volume first, like
docker run -v /home/guest/xyj/webarena/openstreetmap-website/us-northeast-latest.osm.pbf:/data/region.osm.pbf -v /home/guest/zsf/xyj/projects/ogma3/docker/volumes/osm-data:/data/database/ overv/openstreetmap-tile-server import
Please check https://github.com/Overv/openstreetmap-tile-server for reference
I think this should be fixed now in the most recent version of the code.