|
|
|
|
|
by mwcampbell
3915 days ago
|
|
I'm always curious about how developers chose to package web apps like this for on-premises installation. As a VM image? An OS package? A set of OS packages (e.g. with third-party components in separate packages)? Using Docker? Something else? |
|
We'd originally tried shipping the software as a package with dependencies on other OS packages (installed using shell scripts originally, and then using Chef), but this never really worked: every enterprise would have slightly different OS configurations and the install scripts would practically never work.
We did try Docker as a deployment method, but most customers weren't comfortable with it for production deployments (or simply had systems that were too old to run Docker on). Also, orchestration tooling wasn't there yet. Bear in mind that this was a year ago, though.
--
Locked-down VM images (virtual appliances) are to my knowledge quite common as well (e.g. that's how Github enterprise is distributed). With more and more customers using AWS (and other cloud providers), cloud images are becoming another viable option.