anjanesh Has anyone used pocketbase ? Is this any way better off for whatever reason ? Speed ? Filesize ? Speed with large single file size ? How does on run ./pocketbase serve on OpalStack ? Custom App on Custom Port ?
marlus I've being using Pocketbase on Hetzner VPS and it´s amazing. Neat interface, low memory usage. I would love to have it as one-click-install on Opalstack! Does anyone knows how to install it on Opalstack?
nick marlus Hello, something like this should work: Create an nginx proxy port app, note the assigned port Assign that app to a site record Connect to the server with user you made the app for over SSH Setup pocketbase and test: cd ~/apps/your_app_name curl -L -o pocketbase.zip "https://github.com/pocketbase/pocketbase/releases/download/v0.37.4/pocketbase_0.37.4_linux_amd64.zip" unzip pocketbase.zip chmod +x pocketbase #Test start, keep running ./pocketbase serve --http="127.0.0.1:YOUR_PORT" #Visit site via browser to test https://yourdomain.com/_/ If that loads, you can either keep the app persisting via nohup, or even better, create custom bash start/stop scripts.