Skip to content

Commit 5307e99

Browse files
fix: version update
1 parent 134399b commit 5307e99

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/self-hosting/methods/download-config.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ curl "https://prime.plane.so/api/v2/setup/?version=<version>&airgapped=<true|fal
2020

2121
| Option | Required | Default | Description |
2222
| ---------- | -------- | ------- | -------------------------------------------- |
23-
| `version` | Yes || Release tag name (e.g. `v0.23.0`) |
23+
| `version` | Yes || Release tag name (e.g. `v2.3.4`) |
2424
| `airgapped`| No | `false` | Set to `true` to get airgapped compose files |
2525
| `platform` | No | `amd64` | Target architecture: `amd64` or `arm64` |
2626

@@ -30,7 +30,7 @@ curl "https://prime.plane.so/api/v2/setup/?version=<version>&airgapped=<true|fal
3030

3131
| Parameter | Required | Default | Description |
3232
| ----------- | -------- | ------- | -------------------------------------------- |
33-
| `version` | Yes || Release tag name (e.g. `v0.23.0`) |
33+
| `version` | Yes || Release tag name (e.g. `v2.3.4`) |
3434
| `airgapped` | No | `false` | Set to `true` to get airgapped compose files |
3535
| `platform` | No | `amd64` | Target architecture: `amd64` or `arm64` |
3636

@@ -58,26 +58,26 @@ curl "https://prime.plane.so/api/v2/setup/?version=<version>&airgapped=<true|fal
5858
### Download standard config files
5959

6060
```bash
61-
curl "https://prime.plane.so/api/v2/setup/?version=v0.23.0" -o plane.zip
61+
curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4" -o plane.zip
6262
unzip plane.zip
6363
```
6464

6565
### Download airgapped config (AMD64)
6666

6767
```bash
68-
curl "https://prime.plane.so/api/v2/setup/?version=v0.23.0&airgapped=true" -o plane.zip
68+
curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4&airgapped=true" -o plane.zip
6969
```
7070

7171
### Download airgapped config (ARM64)
7272

7373
```bash
74-
curl "https://prime.plane.so/api/v2/setup/?version=v0.23.0&airgapped=true&platform=arm64" -o plane.zip
74+
curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4&airgapped=true&platform=arm64" -o plane.zip
7575
```
7676

7777
### Verify zip contents without extracting
7878

7979
```bash
80-
curl "https://prime.plane.so/api/v2/setup/?version=v0.23.0" -o plane.zip && unzip -l plane.zip
80+
curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4" -o plane.zip && unzip -l plane.zip
8181
```
8282

8383
## Error Responses

0 commit comments

Comments
 (0)