Skip to content

Commit

Permalink
made the tileserver src intialiser more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Nov 12, 2023
1 parent f3073ab commit bc88b64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ services:
volumes:
- tileserver-sprites:/sprites
tileserver-init-src:
image: alpine:latest
image: ubuntu:latest
restart: on-failure
command: wget -P /map --continue https://nav.tum.de/maps/vol/output.mbtiles
command: sh -c "apt update && apt install wget -y && wget --timestamping --directory-prefix=/map --compression=auto --continue --tries=5 https://nav.tum.de/maps/vol/output.mbtiles"
volumes:
- ./map:/map
tileserver:
Expand Down

0 comments on commit bc88b64

Please sign in to comment.