top | item 6177383

ShipBuilder - Open Source PaaS written in Go

41 points| kstaken | 12 years ago |github.com

12 comments

order

ashrust|12 years ago

This is a critical part of our high availability infrastructure.

brryant|12 years ago

Just curious, what's sendhub's architecture? How many nodes? How many heterogeneous nodes?

SEJeff|12 years ago

Does this use lxc natively instead of docker? If so, why!?

jaytaylor|12 years ago

When we first began creating ShipBuilder several months ago, Docker was too unstable to develop against. We then looked at using bare LXC instead and realized it was very straightforward (basically as simple as: lxc-clone, lxc-start, lxc-stop, and lxc-destroy). In fact, most of the LXC functionality is encapsulated in this 50-line file: https://github.com/Sendhub/shipbuilder/blob/master/src/execu...

I am certainly open to the possibility of adding docker compatibility, especially in the form of a pull-request ;)