←back to thread

169 points hunvreus | 1 comments | | HN request time: 0.203s | source
Show context
1970-01-01 ◴[] No.43653731[source]
The VM vs container debate is fascinating. They are separate yet slowly merging concepts that are becoming more blurred as technology becomes cheaper and faster. If the real bottleneck to scale is adaptable code, then it is foolish to dismiss the VM as outdated tech when it can be completely rehomed in 2 seconds. That megabyte of python code managing your containers would still be busy checking it's dependencies in that same timeframe.
replies(2): >>43655040 #>>43662605 #
jiggawatts ◴[] No.43662605[source]
IMHO the real advancement was the implicit snapshot Docker takes after every line in a Dockerfile.

Virtual Machine builder scripts like Packer could do this… but don’t.

It’s a choice, not an inherent technology limitation.

replies(1): >>43674956 #
1. dontlaugh ◴[] No.43674956[source]
I have the opposite opinion, the implicit overlay filesystem in Docker is an unnecessary and frustrating complication.