makeplane / makeplane/plane

[bug]: Plane Community Edition installation using setup script fails on RHEL-based x86_64 systems

Open
#9,199 4 comments 1 reaction 1 assignee View on GitHub

@akshat5302 is already working on this.

Since Jun 4, 2026.

🐛bug plane
Dominant language
TypeScript
Stars
59.6k
Forks
5.8k
Avg merge
1d 22h
Merged PRs (30d)
49

Description

Is there an existing issue for this?
  • I have searched the existing issues
Current behavior

When attempting to install Plane Community Edition on a Fedora 44 x86_64 system (though I imagine this would be an issue on any RHEL-based system), installation fails with an error that there are no images available for "X86_64".

The issue is caused by the fact that RHEL-based systems call this platform "x86_64" (as returned by uname -m), but the available container images are built for architecture "amd64" (which is what this architecture is called on Debian-based systems).

I have worked around the issue by editing the setup.sh script, and at line 14, changed:

CPU_ARCH=$(uname -m)

to:

CPU_ARCH=$(uname -m)
if [ $CPU_ARCH = "x86_64" ]; then
   CPU_ARCH="amd64"
fi

This allows the installation to complete normally.

I am not sure how the setup script is versioned, but the script I edited was retrieved on 2 June 2026 using curl as per the Community Edition installation instructions.

Steps to reproduce
  1. Download Plane Community Edition setup script using curl on an RHEL-based x86_64 system.
  2. Run the script
  3. Select the "Install" option
  4. Observe that it fails immediately.
Environment

Production

Browser

Google Chrome

Variant

Self-hosted

Version

v1.3.1

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.