tileserver-gl
tileserver-gl copied to clipboard
xdpyinfo message
docker run --rm -it -v C:\dockercontainer:/data -p 8080:80 klokantech/tileserver-gl
Starting Xvfb on display 99 xdpyinfo: unable to open display ":99".
Starting tileserver-gl v2.6.0 No MBTiles specified, using polygons.mbtiles Automatically creating config file for polygons.mbtiles WARN: MBTiles not in "openmaptiles" format. Serving raw data only... Run with --verbose to see the config file here. Starting server Listening at http://[::]:80/ Startup complete
Same issue,any progress?
not yet :(
not yet :(
We use the klokantech/tileserver-gl:latest mirror and add sleep 1 to run.sh to solve this ,maybe could help,this is the Dockerfile:
FROM klokantech/tileserver-gl:latest EXPOSE 8080 80 RUN cd /usr/src/app/
&& perl -ne 'print if $. !=20;print "sleep 1\n"if $. == 20' run.sh>run.sh.new
&& rm run.sh
&& cp run.sh.new run.sh
&& chmod 777 run.sh ENTRYPOINT ["/usr/src/app/run.sh"]