|
|
|
|
|
by marksomnian
1526 days ago
|
|
Adding to some of the other responses, one reason I chose to deploy a SPA I'm working on as a Docker image is atomicity - if I want to deploy a newer version I simply switch out the tag in my container orchestrator's config (Nomad in this case, but the same principles apply to k8s and friends) and it's guaranteed that the new deployment will be pristine, without the risk of leftover files from a rsync or similar - and if I need to roll back I do the exact same. |
|
Anything else, though? There’s got to be more to it than that, or it wouldn’t be as popular as it is.