Creating custom applications on Appbox platform

I’ve been using an Appbox server for several years now and it’s been great for file storage and media streaming with Plex. Now I want to expand into development work and need to run some automation middleware or integration platform software similar to Make, Zapier, or other iPaaS solutions.

The issue is that Appbox doesn’t offer these types of applications in their marketplace, but I do have the option to install Ubuntu. I’m wondering if there’s a method to create custom applications directly for hosting providers like this, or if I would be forced to work inside Ubuntu instead?

My main concern about using Ubuntu is the performance impact since it would essentially mean running two operating systems at once rather than native applications. Has anyone found a better approach for this kind of setup?

Hold up - there’s actually a middle ground here you might’ve missed. Some hosts let you run Docker containers without needing full Ubuntu virtualization. Check if Appbox supports Docker deployment. You’ll get way better performance than running a complete OS while still getting your custom apps. I’ve deployed n8n and Node-RED this way on similar platforms with almost no overhead. Resource usage is dramatically lower since you’re only running what you actually need, not a whole Ubuntu stack. Also worth checking if Appbox has any API or webhook features that’d let you build lightweight custom integrations right on their existing setup before you go the full Ubuntu route.

honestly, i’d just go with ubuntu. yeah, there’s some overhead but it’s not as bad as you think, especially for automation that mostly sits idle waiting for triggers. i tried a similar setup last year and performance was totally fine for zapier-like workflows.

Had the same issue trying to run custom middleware on managed hosting. You’re right about Ubuntu’s performance hit, but here’s another option - try compiling standalone binaries that run directly on the host without virtualization overhead. Tools like n8n or Appsmith can deploy as single executables or lightweight Node.js apps without needing full containers. Before going the Ubuntu route, I’d contact Appbox support about custom binary deployment or ask them to add the iPaaS tools you need to their marketplace. These platforms are often more flexible than their docs show, especially if you’re a long-term customer. The performance gap between native execution and Ubuntu virtualization really shows when you’re handling tons of webhook calls or data transformations.