Virtual Server

2 min read Updated Mon Jun 08 2026 01:02:45 GMT+0000 (Coordinated Universal Time)

A virtual server is an OS plus server software packages running on physical hardware. No external dependencies and portable across any cloud hardware. They provide the same interface as a physical server.

Hypervisor-based Virtualization

Hypervisor

Provides hardware emulation.

  • Type I Runs directly on hardware.
  • Type II
    Run on top of a host OS.

Virtual Machine

A software emulation of a physical computer. Runs its own guest OS and applications isolated from the host system.

A single physical machine can run multiple VMs simultaneously. Portable to any compatible hypervisor.

Managed by a hypervisor.

Container-based Virtualization

Container

OS-level virtualization unit. Multiple independent servers share the host OS kernel via a container manager.

Compared to VMs: less size, faster startup, shares the host OS instead of a full guest OS.

Used for providing isolated application instances per user, all using the same OS.

Docker

A mainstream open-source container management system.

Components:

ElementFunction
Docker daemonProcess on host; builds, starts, stops, monitors containers and images.
Docker clientInterface for developers/admins to define and control containers.
DockerfileScript defining the software to be included in an image.
ImageCompiled Dockerfile. Runnable directory with software and data installed.
ContainerExecuting image. Can be moved between servers without modification.
Docker hubPublic registry of images. Reusable as bases for new images.

Docker images have a base layer and custom software layers on top. Updates ship only changed layers.

Was this helpful?