I can solve this issue. Steps:
- Instead of
curl -L https://umbrel.sh | bash
to install, I didcurl -L https://umbrel.sh > install-umbrel.sh
- Modify the
install-umbrel.sh
script. Look at theinstall_docker_compose
function and change it to:
install_docker_compose() {
sudo apt-get install --yes libffi-dev pipx
sudo pipx install docker-compose
# we need to add /root.local/bin to the PATH
echo PATH="\$PATH:/root/.local/bin" | sudo tee -a /root/.bashrc > /dev/null
sudo source /root/.bashrc
}
- Save and run the script
bash install-umbrel.sh
.
I hope this helps you.
Greetings