Download Docker config files
If you're running a custom Docker setup and don't use prime-cli, you can download the docker-compose.yml and variables.env files for any Plane release directly.
Endpoint
bash
curl "https://prime.plane.so/api/v2/setup/?version=<version>&airgapped=<true|false>&platform=<amd64|arm64>" -o plane.zipAuthentication: None required (public endpoint)
Parameters
| Parameter | Required | Default | Description |
|---|---|---|---|
version | Yes | — | Release tag (e.g., v2.3.4) |
airgapped | No | false | Set to true for airgapped compose files |
platform | No | amd64 | Target architecture: amd64 or arm64. Only applies when airgapped=true. |
What's in the zip
Standard download
docker-compose.ymlvariables.env
Airgapped download
airgapped-docker-compose-{platform}.ymlvariables.env
Quick download
Standard setup
bash
curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4" -o plane.zip
unzip plane.zipAirgapped setup (AMD64)
bash
curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4&airgapped=true" -o plane.zip
unzip plane.zipAirgapped setup (ARM64)
bash
curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4&airgapped=true&platform=arm64" -o plane.zip
unzip plane.zipReplace v2.3.4 with the version you need. See the releases page for available versions.
Error responses
| Status | Cause | Response |
|---|---|---|
| 400 | Missing version parameter | {"error": "version query parameter is required"} |
| 400 | Invalid platform value | {"error": "platform must be amd64 or arm64"} |
| 400 | Server missing GitHub configuration | {"error": "missing required settings"} |
| 404 | Release tag not found | {"error": "release not found"} |
| 404 | Config files missing from release | {"error": "assets not found in release: <filenames>"} |
| 500 | GitHub API failure | {"error": "Failed to fetch release information"} |

