this post was submitted on 16 Mar 2024
327 points (98.5% liked)

Technology

58143 readers
5570 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] ChrisLicht@lemm.ee 1 points 6 months ago (5 children)

Please forgive a wildly uninformed question: What is it that VMware does today that isn’t covered by Docker?

[–] kylian0087@lemmy.world 16 points 6 months ago

Different OSes. Windows and Linux for example. No way to run a full fledged domain controller in a container. Just to name a example.

[–] nrezcm@lemmy.world 12 points 6 months ago

VDI environments is one place. Also Windows heavy environments (exchange, SharePoint, teams, DCs, etc) are probably better suited for VMs.

[–] catloaf@lemm.ee 10 points 6 months ago

Storage, software defined networking, performance metrics, VDIs, endpoint security, virtualization on the desktop.

Not to mention, a lot of workloads aren't suited to containers. The vast majority of business software isn't containerized, and it would be wildly cost-prohibitive for me to shoehorn that square peg into the round hole of virtualization.

[–] BearOfaTime@lemm.ee 5 points 6 months ago

Uhh, docker is containers, VMware is a virtualization hypervisor?

[–] jj4211@lemmy.world 3 points 6 months ago

Ultimately, in terms of what they can do, well technically you can do anything without any container or virtualization strategy, so from that angle, they are all the same.

It reallyboils down to what the humans are comfortable with, and that's where there's some divergence.

Sure, one could make technical arguments about one can be multi kennel, one has arguably somewhat stronger likelihood of isolation, and one has a bit more efficiency than the other, but it's really down to human factors and familiarity.

Developers tend to like container based approach because the "image" is transparent and usually provides nice cheap options to somewhat track history and "fork" from common points with some flexibility. VMs kind of have some of that, but practically speaking it's far more awkward.

Conversely some operators find managing container based solutions too "developery" and find comfort with virtual machines. It's also more straightforward to just carve out a vm, hand it over, and give them the keys and let them deal with it. Then you commonly have VMs at one layer, and at least some of your tenants self managing some container management layer on top of their slice of the world.

While there is some overlap, general comparison of VMware vs Docker is a bit apples and oranges.