1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From b863710a6621393f86e94aec4e466a54a8879c94 Mon Sep 17 00:00:00 2001
From: Mark <113889912+KnotzerIO@users.noreply.github.com>
Date: Fri, 18 Oct 2024 11:40:00 +0200
Subject: docs: fix docker command syntax and add code formatting in README.md
(#732)
---
README.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index f264d84..85e88bc 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,9 @@ We provide a ready-to-use docker image that gets you started without having to c
2. Run tilemaker on the OpenStreetMap snapshot to generate [Protomaps](https://protomaps.com) vector tiles:
- docker run -it --rm -v (pwd):/data ghcr.io/systemed/tilemaker:master /data/monaco-latest.osm.pbf --output /data/monaco-latest.pmtiles
+```
+ docker run -it --rm -v $(pwd):/data ghcr.io/systemed/tilemaker:master /data/monaco-latest.osm.pbf --output /data/monaco-latest.pmtiles
+```
3. Check out what's in the vector tiles e.g. by using the debug viewer [here](https://protomaps.github.io/PMTiles/)
--
2.47.3
|