Is there an existing issue for this?
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
Is there an existing issue for this?
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:
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
curlas per the Community Edition installation instructions.Steps to reproduce
Environment
Production
Browser
Google Chrome
Variant
Self-hosted
Version
v1.3.1