Skip to content

Commit ae34390

Browse files
chore(fmt): apply pre-commit formatting fixes
1 parent 6e49f51 commit ae34390

8 files changed

Lines changed: 14 additions & 14 deletions

File tree

demo/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
- ./certs:/etc/ssl/certs
1414

1515
tiles:
16-
image: ghcr.io/maplibre/martin:1.15.0
16+
image: ghcr.io/maplibre/martin:1.15.1
1717
restart: unless-stopped
1818
ports:
1919
- "3000:3000"

docs/content/files/compose.nginx.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
- martin
1212

1313
martin:
14-
image: ghcr.io/maplibre/martin:1.15.0
14+
image: ghcr.io/maplibre/martin:1.15.1
1515
restart: unless-stopped
1616
environment:
1717
- DATABASE_URL=postgres://postgres:password@db/db

docs/content/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ docker run -p 3000:3000 \
2222
-e PGPASSWORD \
2323
-e DATABASE_URL=postgres://user@host:port/db \
2424
-v /path/to/config/dir:/config \
25-
ghcr.io/maplibre/martin:1.15.0 \
25+
ghcr.io/maplibre/martin:1.15.1 \
2626
--config /config/config.yaml
2727
```
2828

docs/content/run-with-docker-compose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ file as a reference
1414
```yml
1515
services:
1616
martin:
17-
image: ghcr.io/maplibre/martin:1.15.0
17+
image: ghcr.io/maplibre/martin:1.15.1
1818
restart: unless-stopped
1919
ports:
2020
- "3000:3000"

docs/content/run-with-docker.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You can use official Docker image [`ghcr.io/maplibre/martin`](https://ghcr.io/ma
1515
docker 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.
2626
docker 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
3636
docker 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
5353
docker 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
6464
docker 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
7575
docker 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
```

docs/content/run-with-lambda.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ The CloudShell also runs in a particular AWS region.
2424
Lambda images must come from a public or private ECR registry. Pull the image from GHCR and push it to ECR.
2525

2626
```bash
27-
$ docker pull ghcr.io/maplibre/martin:1.15.0 --platform linux/arm64
27+
$ docker pull ghcr.io/maplibre/martin:1.15.1 --platform linux/arm64
2828
$ aws ecr create-repository --repository-name martin
2929
[…]
3030
"repositoryUri": "493749042871.dkr.ecr.us-east-2.amazonaws.com/martin",
3131

3232
# Read the repositoryUri which includes your account number
33-
$ docker tag ghcr.io/maplibre/martin:1.15.0 493749042871.dkr.ecr.us-east-2.amazonaws.com/martin:latest
33+
$ docker tag ghcr.io/maplibre/martin:1.15.1 493749042871.dkr.ecr.us-east-2.amazonaws.com/martin:latest
3434
$ aws ecr get-login-password --region us-east-2 \
3535
| docker login --username AWS --password-stdin 493749042871.dkr.ecr.us-east-2.amazonaws.com
3636
$ docker push 493749042871.dkr.ecr.us-east-2.amazonaws.com/martin:latest

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ debug-page *args: start
369369

370370
# Build and run martin docker image
371371
docker-run *args:
372-
docker run -it --rm --net host -e DATABASE_URL -v $PWD/tests:/tests ghcr.io/maplibre/martin:1.15.0 {{args}}
372+
docker run -it --rm --net host -e DATABASE_URL -v $PWD/tests:/tests ghcr.io/maplibre/martin:1.15.1 {{args}}
373373

374374
# Build and run martin documentation
375375
docs:

martin/martin-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@
7171
"type-check": "tsc --noEmit"
7272
},
7373
"type": "module",
74-
"version": "1.15.0"
74+
"version": "1.15.1"
7575
}

0 commit comments

Comments
 (0)