Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/self-hosting/methods/airgapped-edition.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ Consider these alternatives:

```bash
# Download docker-compose.yml
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Update the inline comment to match the downloaded file name.

Line 57 says # Download docker-compose.yml, but the command downloads docker-compose-airgapped.yml.

Suggested doc fix
-   # Download docker-compose.yml
+   # Download docker-compose-airgapped.yml
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
# Download docker-compose.yml
# Download docker-compose-airgapped.yml
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/self-hosting/methods/airgapped-edition.md` at line 57, Update the inline
header text that currently reads "# Download docker-compose.yml" to match the
file being downloaded (change it to "# Download docker-compose-airgapped.yml")
so the comment reflects the actual command and filename used in the docs.

curl -fsSL https://prime.plane.so/releases/<plane-version>/docker-compose.yml -o docker-compose.yml
curl -fsSL https://prime.plane.so/releases/<plane-version>/docker-compose-airgapped.yml -o docker-compose.yml

# Download environment template
curl -fsSL https://prime.plane.so/releases/<plane-version>/variables.env -o plane.env
curl -fsSL https://prime.plane.so/releases/<plane-version>/variables-airgapped.env -o plane.env
```

3. **Configure environment variables**
Expand Down
Loading