[bug]: Plane Community Edition installation using setup script fails on RHEL-based x86_64 systems
@akshat5302 is already working on this.
Since Jun 4, 2026.
- 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
- Download Plane Community Edition setup script using curl on an RHEL-based x86_64 system.
- Run the script
- Select the "Install" option
- Observe that it fails immediately.
Environment
Production
Browser
Google Chrome
Variant
Self-hosted
Version
v1.3.1
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.