Skip to content

Commit 743d863

Browse files
committed
madison
1 parent 93516cd commit 743d863

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ RUN apt-get update \
99
osm2pgsql
1010

1111
RUN curl -L --silent --show-error --fail -o /planetiler.jar \
12-
https://github.com/onthegomap/planetiler/releases/download/v0.9.0/planetiler.jar \
12+
https://github.com/onthegomap/planetiler/releases/download/v0.10.2/planetiler.jar \
1313
&& curl -L --silent --show-error --fail -o /martin.tar.gz \
14-
https://github.com/maplibre/martin/releases/download/martin-v0.20.2/martin-x86_64-unknown-linux-gnu.tar.gz \
14+
https://github.com/maplibre/martin/releases/download/martin-v1.10.1/martin-aarch64-unknown-linux-gnu.tar.gz \
1515
&& tar -xzf /martin.tar.gz -C /usr/local/bin \
1616
&& rm /martin.tar.gz \
1717
&& mkdir -p /data/sources

.devcontainer/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
devenv:
3-
image: ghcr.io/maplibre/workshop:auckland
3+
image: ghcr.io/maplibre/workshop:madison
44
restart: unless-stopped
55
command: sleep infinity
66

.devcontainer/download_osm_slice.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ set -e
33

44
# NOTE: This script should be updated whenever the workshop location changes.
55
# Update the bounding box coordinates below.
6+
# E.g. from https://geobounds.com/
67

78
# Bounding box coordinates (format: min_lon,min_lat,max_lon,max_lat)
8-
MIN_LON=174.219297
9-
MIN_LAT=-37.068435
10-
MAX_LON=175.254758
11-
MAX_LAT=-36.575944
9+
MIN_LON=-89.859177
10+
MIN_LAT=42.715939
11+
MAX_LON=-88.696754
12+
MAX_LAT=43.377857
1213

1314
OUTPUT_FILE="/data/sources/workshop.osm.pbf"
1415
mkdir -p "$(dirname "${OUTPUT_FILE}")"

.github/workflows/docker-ghcr-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
contents: read
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020

2121
- name: Log in to GitHub Container Registry
2222
uses: docker/login-action@v3

0 commit comments

Comments
 (0)