How to config a proxy for appstore

Finally, I found the solution to install new app. Just install from CLI, the UI seems not working. It’s just docker stuffs.

  1. Login to your umbrel Pi: ssh umbrel@umbrel.local
  2. Switch to ~/umbrel/scripts: cd ~/umbrel/scripts
  3. 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>