Skip to content

Commit 7d48ad5

Browse files
chore(fmt): apply pre-commit formatting fixes
1 parent 7e8706a commit 7d48ad5

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

docs/src/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ docker run -p 3000:3000 \
1515
-e PGPASSWORD \
1616
-e DATABASE_URL=postgres://user@host:port/db \
1717
-v /path/to/config/dir:/config \
18-
ghcr.io/maplibre/martin:0.20.2 \
18+
ghcr.io/maplibre/martin:0.20.3 \
1919
--config /config/config.yaml
2020
```
2121

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ file as a reference
66
```yml
77
services:
88
martin:
9-
image: ghcr.io/maplibre/martin:0.20.2
9+
image: ghcr.io/maplibre/martin:0.20.3
1010
restart: unless-stopped
1111
ports:
1212
- "3000:3000"

docs/src/run-with-docker.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can use official Docker image [`ghcr.io/maplibre/martin`](https://ghcr.io/ma
88
docker 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.
1919
docker 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.
3535
docker 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
4646
docker 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
5757
docker 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
```

docs/src/run-with-lambda.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ Everything can be performed via AWS CloudShell, or you can install the AWS CLI a
1111
Lambda images must come from a public or private ECR registry. Pull the image from GHCR and push it to ECR.
1212

1313
```bash
14-
$ docker pull ghcr.io/maplibre/martin:0.20.2 --platform linux/arm64
14+
$ docker pull ghcr.io/maplibre/martin:0.20.3 --platform linux/arm64
1515
$ aws ecr create-repository --repository-name martin
1616
[…]
1717
"repositoryUri": "493749042871.dkr.ecr.us-east-2.amazonaws.com/martin",
1818

1919
# Read the repositoryUri which includes your account number
20-
$ docker tag ghcr.io/maplibre/martin:0.20.2 493749042871.dkr.ecr.us-east-2.amazonaws.com/martin:latest
20+
$ docker tag ghcr.io/maplibre/martin:0.20.3 493749042871.dkr.ecr.us-east-2.amazonaws.com/martin:latest
2121
$ aws ecr get-login-password --region us-east-2 \
2222
| docker login --username AWS --password-stdin 493749042871.dkr.ecr.us-east-2.amazonaws.com
2323
$ 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
@@ -160,7 +160,7 @@ debug-page *args: start
160160

161161
# Build and run martin docker image
162162
docker-run *args:
163-
docker run -it --rm --net host -e DATABASE_URL -v $PWD/tests:/tests ghcr.io/maplibre/martin:0.20.2 {{args}}
163+
docker run -it --rm --net host -e DATABASE_URL -v $PWD/tests:/tests ghcr.io/maplibre/martin:0.20.3 {{args}}
164164

165165
# Build and open code documentation
166166
docs *args='--open':

martin/martin-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@
6161
"type-check": "tsc --noEmit"
6262
},
6363
"type": "module",
64-
"version": "0.20.2"
64+
"version": "0.20.3"
6565
}

0 commit comments

Comments
 (0)