You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I followed the install-community-edition method to self-host Plane on an amd64 machine. During ./setup install, it asked me to build the Plane Docker image on my local machine, and the build completed successfully. However, after running ./setup start, I noticed that the live services did not start.
Upon checking build.yml, it seems that the live services were not included in the build process.
Steps to reproduce
Follow the install-community-edition instructions to self-host Plane on an amd64 machine.
Run ./setup install and complete the build process.
Run ./setup start.
Observe that the live services are not running.
Environment
Production
Browser
None
Variant
Self-hosted
Version
v0.24.1
The text was updated successfully, but these errors were encountered:
Hey @zxcv1884 could you please share the output of the cmds: uname -muname
Also could you please share the screenshot of ./setup install command output, something like this
However, during ./setup.sh install, I encountered the error:
unsupported manifest media type and no default available: application/vnd.oci.image.manifest.v1+json
This might be related to the Docker version. To resolve this, I commented out the following lines in setup.sh, and the installation proceeded successfully:
# docker manifest inspect "${IMAGE_NAME}:${IMAGE_TAG}" | grep -q "\"architecture\": \"${CPU_ARCH}\"" &
# local pid=$!
# spinner "$pid"
# echo "" >&2
# wait "$pid"
# if [ $? -eq 0 ]; then
echo "Plane supports ${CPU_ARCH}" >&2
echo "available"
return 0
# else
# echo "" >&2
# echo "" >&2
# echo "${UPPER_CPU_ARCH} images are not available for selected release ($APP_RELEASE)." >&2
# echo "" >&2
# echo "build"
# return 1
# fi
Is there an existing issue for this?
Current behavior
I followed the
install-community-edition
method to self-host Plane on an amd64 machine. During./setup install
, it asked me to build the Plane Docker image on my local machine, and the build completed successfully. However, after running./setup start
, I noticed that the live services did not start.Upon checking build.yml, it seems that the live services were not included in the build process.
Steps to reproduce
./setup install
and complete the build process../setup start
.Environment
Production
Browser
None
Variant
Self-hosted
Version
v0.24.1
The text was updated successfully, but these errors were encountered: