-
Notifications
You must be signed in to change notification settings - Fork 11
docs: update airgapped edition instructions for docker-compose and environment variables #253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -55,10 +55,10 @@ Consider these alternatives: | |
|
|
||
| ```bash | ||
| # Download docker-compose.yml | ||
| 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-airgapped.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-airgapped.env | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use one consistent airgapped file set across all steps. The flow currently downloads Suggested doc fix- Edit the `plane.env` file to configure your deployment:
+ Edit the `plane-airgapped.env` file to configure your deployment:
- **Update image references** in `docker-compose.yml` to point to your private registry:
+ **Update image references** in `docker-compose-airgapped.yml` to point to your private registry:
- docker compose --env-file plane.env up -d
+ docker compose -f docker-compose-airgapped.yml --env-file plane-airgapped.env up -dAlso applies to: 66-66, 78-78, 126-126 🤖 Prompt for AI Agents |
||
| ``` | ||
|
|
||
| 3. **Configure environment variables** | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update the inline comment to match the downloaded file name.
Line 57 says
# Download docker-compose.yml, but the command downloadsdocker-compose-airgapped.yml.Suggested doc fix
📝 Committable suggestion
🤖 Prompt for AI Agents