0 votes
in Docker by
What are the differences between virtualization and containerization?

1 Answer

0 votes
by

Once you’ve explained containerization and virtualization, the next expected question would be differences. The question could either be differences between virtualization and containerization or differences between virtual machines and containers. Either way, this is how you respond.

Containers provide an isolated environment for running the application. The entire user space is explicitly dedicated to the application. Any changes made inside the container is never reflected on the host or even other containers running on the same host. Containers are an abstraction of the application layer. Each container is a different application.

Whereas in Virtualization, hypervisors provide an entire virtual machine to the guest(including Kernal). Virtual machines are an abstraction of the hardware layer. Each VM is a physical machine.

Related questions

0 votes
asked Aug 29, 2023 in Docker by JackTerrance
0 votes
asked Sep 5, 2021 in Cloud Computing by SakshiSharma
...