tileserver-gl icon indicating copy to clipboard operation
tileserver-gl copied to clipboard

xdpyinfo message

Open paulopires16 opened this issue 6 years ago • 3 comments

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

paulopires16 avatar Aug 29 '19 15:08 paulopires16

Same issue,any progress?

wuqi avatar Jan 10 '22 09:01 wuqi

not yet :(

paulopires16 avatar Jan 10 '22 10:01 paulopires16

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

wuqi avatar Jan 20 '22 03:01 wuqi