From a0e2dc3ab503c6b6895c0751bb529db08d986482 Mon Sep 17 00:00:00 2001 From: Sriram Veeraghanta Date: Fri, 21 Aug 2026 12:56:20 +0530 Subject: [PATCH] fix(developer-docs): correct airgapped infrastructure service names MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rename redis→plane-redis, postgres→plane-db, rabbitmq→plane-mq, minio→plane-minio in the local infrastructure YAML example so they match the actual service names in docker-compose-airgapped.yml. Also add pi-db-init which reuses the postgres image, and SITE_ADDRESS to the environment variable block. Ports makeplane/developer-docs#317 to this monorepo. Claude-Session: https://claude.ai/code/session_0127W5LkKePrb8vVG9FFdFgG --- .../docs/self-hosting/methods/airgapped-edition.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/apps/developer-docs/docs/self-hosting/methods/airgapped-edition.md b/apps/developer-docs/docs/self-hosting/methods/airgapped-edition.md index 2a06b19d..efc7ec57 100644 --- a/apps/developer-docs/docs/self-hosting/methods/airgapped-edition.md +++ b/apps/developer-docs/docs/self-hosting/methods/airgapped-edition.md @@ -73,6 +73,7 @@ Consider these alternatives: export DOMAIN_NAME=plane.yourcompany.com export WEB_URL=https://plane.yourcompany.com export CORS_ALLOWED_ORIGINS=https://plane.yourcompany.com + export SITE_ADDRESS=https://plane.yourcompany.com ``` **Update image references** in `docker-compose.yml` to point to your private registry: @@ -153,16 +154,19 @@ Consider these alternatives: ```yaml services: - redis: + plane-redis: image: valkey/valkey:7.2.11-alpine - postgres: + plane-db: image: postgres:15.7-alpine - rabbitmq: + pi-db-init: + image: postgres:15.7-alpine + + plane-mq: image: rabbitmq:3.13.6-management-alpine - minio: + plane-minio: image: minio/minio:latest ```