@@ -15,7 +15,7 @@ You can use official Docker image [`ghcr.io/maplibre/martin`](https://ghcr.io/ma
1515docker run \
1616 -p 3000:3000 \
1717 -e DATABASE_URL=postgres://postgres@postgres.example.org/db \
18- ghcr.io/maplibre/martin:1.15.0
18+ ghcr.io/maplibre/martin:1.15.1
1919```
2020
2121### Exposing Local Files
@@ -26,7 +26,7 @@ You can expose local files to the Docker container using the `-v` flag.
2626docker run \
2727 -p 3000:3000 \
2828 -v /path/to/local/files:/files \
29- ghcr.io/maplibre/martin:1.15.0 \
29+ ghcr.io/maplibre/martin:1.15.1 \
3030 /files
3131```
3232
@@ -36,7 +36,7 @@ You can also pass any [CLI flags](run-with-cli.md) after the image name, for exa
3636docker run \
3737 -p 3000:3000 \
3838 -v /path/to/local/files:/files \
39- ghcr.io/maplibre/martin:1.15.0 \
39+ ghcr.io/maplibre/martin:1.15.1 \
4040 --webui enable-for-all \
4141 /files
4242```
@@ -53,7 +53,7 @@ You would not need to export ports with `-p` because the container is already us
5353docker run \
5454 --net=host \
5555 -e DATABASE_URL=postgres://postgres@localhost/db \
56- ghcr.io/maplibre/martin:1.15.0
56+ ghcr.io/maplibre/martin:1.15.1
5757```
5858
5959### Accessing Local PostgreSQL on macOS
@@ -64,7 +64,7 @@ For macOS, use `host.docker.internal` as hostname to access the `localhost` Post
6464docker run \
6565 -p 3000:3000 \
6666 -e DATABASE_URL=postgres://postgres@host.docker.internal/db \
67- ghcr.io/maplibre/martin:1.15.0
67+ ghcr.io/maplibre/martin:1.15.1
6868```
6969
7070### Accessing Local PostgreSQL on Windows
@@ -75,5 +75,5 @@ For Windows, use `docker.for.win.localhost` as hostname to access the `localhost
7575docker run \
7676 -p 3000:3000 \
7777 -e DATABASE_URL=postgres://postgres@docker.for.win.localhost/db \
78- ghcr.io/maplibre/martin:1.15.0
78+ ghcr.io/maplibre/martin:1.15.1
7979```
0 commit comments