@@ -8,7 +8,7 @@ You can use official Docker image [`ghcr.io/maplibre/martin`](https://ghcr.io/ma
88docker run \
99 -p 3000:3000 \
1010 -e DATABASE_URL=postgres://
[email protected] /db \
11- ghcr.io/maplibre/martin:0.20.2
11+ ghcr.io/maplibre/martin:0.20.3
1212```
1313
1414### Exposing Local Files
@@ -19,7 +19,7 @@ You can expose local files to the Docker container using the `-v` flag.
1919docker run \
2020 -p 3000:3000 \
2121 -v /path/to/local/files:/files \
22- ghcr.io/maplibre/martin:0.20.2 \
22+ ghcr.io/maplibre/martin:0.20.3 \
2323 /files
2424```
2525
@@ -35,7 +35,7 @@ with `-p` because the container is already using the host network.
3535docker run \
3636 --net=host \
3737 -e DATABASE_URL=postgres://postgres@localhost/db \
38- ghcr.io/maplibre/martin:0.20.2
38+ ghcr.io/maplibre/martin:0.20.3
3939```
4040
4141### Accessing Local PostgreSQL on macOS
@@ -46,7 +46,7 @@ For macOS, use `host.docker.internal` as hostname to access the `localhost` Post
4646docker run \
4747 -p 3000:3000 \
4848 -e DATABASE_URL=postgres://
[email protected] /db \
49- ghcr.io/maplibre/martin:0.20.2
49+ ghcr.io/maplibre/martin:0.20.3
5050```
5151
5252### Accessing Local PostgreSQL on Windows
@@ -57,5 +57,5 @@ For Windows, use `docker.for.win.localhost` as hostname to access the `localhost
5757docker run \
5858 -p 3000:3000 \
5959 -e DATABASE_URL=postgres://
[email protected] /db \
60- ghcr.io/maplibre/martin:0.20.2
60+ ghcr.io/maplibre/martin:0.20.3
6161```
0 commit comments