|
|
|
|
|
by jimbokun
2688 days ago
|
|
Took me a while to see the value of Docker. Ever deploy the same software to multiple servers, and it maddeningly behaves slightly differently on different servers, and you're not quite sure why? This is the problem docker solves. Install exactly once, when you build the image. Then deploy the exact same code, down to the bit, as many times as you want, to as many servers as you want. Or quickly roll back to the Docker image for the previous version. So this is how Docker helps you scale quickly and deploy as often as you want, with confidence. Kubernetes, meh. Just some code for spinning up more or fewer Docker containers in an automated fashion. At least that's my impression, I haven't had to get my hands dirty with it yet. |
|