From 0d39f9e511354bdd1a6b26bdefcd611df0eeedd7 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Wed, 14 Aug 2024 21:01:46 +0200 Subject: [PATCH] removed `--continue --timestamping` options for `wget` as it was corrupting downloads --- docker-compose.local.yml | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.local.yml b/docker-compose.local.yml index 8ab1c815f..194310830 100644 --- a/docker-compose.local.yml +++ b/docker-compose.local.yml @@ -90,7 +90,7 @@ services: start_period: 20s osm-download-data: image: alpine:latest - command: sh -c "apk --update add --quiet wget && wget --continue --timestamping https://download.geofabrik.de/europe/germany/bayern/oberbayern-latest.osm.pbf" + command: sh -c "apk --update add --quiet wget && wget https://download.geofabrik.de/europe/germany/bayern/oberbayern-latest.osm.pbf" working_dir: /map/data volumes: - ./map/data/:/map/data/:rw diff --git a/docker-compose.yml b/docker-compose.yml index cbcad14eb..6c0965191 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -195,7 +195,7 @@ services: start_period: 20s osm-download-data: image: alpine:latest - command: sh -c "apk --update add --quiet wget && wget --continue --timestamping https://download.geofabrik.de/europe/germany-latest.osm.pbf" + command: sh -c "apk --update add --quiet wget && wget https://download.geofabrik.de/europe/germany-latest.osm.pbf -o nul" working_dir: /map/data volumes: - ./map/data/:/map/data/:rw