A while ago, the author of XBoard released a new project:
https://github.com/cedar2025/Xboard-Node
On the surface, this project is just a new node backend, but it actually solves a crucial problem: allowing node programs to run stably in Docker containers.
If you've used V2bX or similar solutions before, you've probably experienced this: nodes generally depend on the host environment, and running them in a container is either troublesome or unstable. This has also led to node deployment always being strongly tied to VPS.
The emergence of Xboard-Node essentially "containerizes" the node completely. The node no longer depends on a specific machine but becomes a service that can run anywhere.
The change brought about by this is not just convenient deployment, but a shift in thinking.
Since nodes can run with Docker, theoretically, any place that provides a container runtime environment can be used as a node.
Thus, a very natural direction emerges:
Use free container platforms to run nodes.
I. Why This is Feasible
Let's break down the logic:
- Xboard-Node: Provides a "containerizable node program"
- Container Platform: Provides "runtime environment + public network egress"
After combining the two:
Node = A container instance that can be deployed at any time
This means:
- No longer dependent on VPS
- Can be created/destroyed at any time
- Can be deployed dispersedly
This makes "low-cost backup nodes" possible.
II. Brief Explanation of ClawCloud Run
ClawCloud Run is used here.
You can think of it as an online runtime environment that supports Docker:
- Can directly deploy container images
- Provides a free tier of $5 per month
- IP belongs to Alibaba Cloud, a domestic manufacturer (high stability)
This is sufficient for a node.
III. Overall Structure
The structure of the entire solution is as follows:
Xboard Panel
↓
Xboard-Node (Docker)
↓
ClawCloud Run (Runtime Environment)




Here, 







One comment
不是真是闹麻了,刚出教程跟我说clawcloud run关停了