Finally, I found the solution to install new app. Just install from CLI, the UI seems not working. It’s just docker stuffs.
- Login to your umbrel Pi:
ssh umbrel@umbrel.local - Switch to
~/umbrel/scripts:cd ~/umbrel/scripts - Run
sudo ./app install <app-name>. For example, command to install Nostr Relay is:sudo ./app install nostr-relay
If you encounter some error about connecting to the docker hub, just run docker login in
To set a global proxy, add these to /etc/environment and reboot the system
export http_proxy=http://<proxy-server-ip>:<port>
export https_proxy=http://<proxy-server-ip>:<port>
export all_proxy=socks5://<proxy-server-ip>:<port>