Files

185 lines
5.4 KiB
Vue
Raw Permalink Normal View History

<!--
DockerArchitectureDemo.vue
Docker 架构对比演示虚拟机 vs 容器
-->
<template>
<div class="docker-arch-demo">
<div class="header">
<div class="title">虚拟机 vs 容器</div>
<div class="subtitle">点击切换查看两种虚拟化方式的架构差异</div>
</div>
<div class="tabs">
<button
v-for="tab in tabs"
:key="tab.key"
:class="['tab-btn', { active: activeTab === tab.key }]"
@click="activeTab = tab.key"
>
{{ tab.label }}
</button>
</div>
<div class="arch-view">
<div class="layers">
<div
v-for="(layer, i) in currentLayers"
:key="i"
:class="['layer', layer.type]"
>
<div class="layer-label">{{ layer.label }}</div>
<div v-if="layer.items" class="layer-items">
<div v-for="(item, j) in layer.items" :key="j" class="layer-item">
{{ item }}
</div>
</div>
</div>
</div>
<div class="comparison">
<div v-for="(item, i) in currentInfo" :key="i" class="info-row">
<span class="info-label">{{ item.label }}</span>
<span :class="['info-value', item.highlight ? 'highlight' : '']">{{ item.value }}</span>
</div>
</div>
</div>
</div>
</template>
<script setup>
import { ref, computed } from 'vue'
const activeTab = ref('container')
const tabs = [
{ key: 'vm', label: '虚拟机' },
{ key: 'container', label: '容器' }
]
const vmLayers = [
{ label: '应用 A / 应用 B / 应用 C', type: 'app', items: ['App A + Bins/Libs', 'App B + Bins/Libs', 'App C + Bins/Libs'] },
{ label: '客户操作系统(Guest OS', type: 'os', items: ['Ubuntu', 'CentOS', 'Debian'] },
{ label: 'HypervisorVMware / KVM', type: 'hypervisor' },
{ label: '宿主操作系统(Host OS', type: 'host' },
{ label: '物理硬件', type: 'hardware' }
]
const containerLayers = [
{ label: '应用 A / 应用 B / 应用 C', type: 'app', items: ['App A + Bins/Libs', 'App B + Bins/Libs', 'App C + Bins/Libs'] },
{ label: 'Docker Engine', type: 'docker' },
{ label: '宿主操作系统(Host OS', type: 'host' },
{ label: '物理硬件', type: 'hardware' }
]
const vmInfo = [
{ label: '启动速度', value: '分钟级', highlight: false },
{ label: '资源占用', value: '每个 VM 需要完整 OSGB 级)', highlight: false },
{ label: '隔离性', value: '强(硬件级隔离)', highlight: true },
{ label: '密度', value: '单机通常 10-20 个 VM', highlight: false },
{ label: '镜像大小', value: 'GB 级', highlight: false }
]
const containerInfo = [
{ label: '启动速度', value: '秒级', highlight: true },
{ label: '资源占用', value: '共享宿主 OS 内核(MB 级)', highlight: true },
{ label: '隔离性', value: '较强(进程级隔离)', highlight: false },
{ label: '密度', value: '单机可运行数百个容器', highlight: true },
{ label: '镜像大小', value: 'MB 级', highlight: true }
]
const currentLayers = computed(() => activeTab.value === 'vm' ? vmLayers : containerLayers)
const currentInfo = computed(() => activeTab.value === 'vm' ? vmInfo : containerInfo)
</script>
<style scoped>
.docker-arch-demo {
border: 1px solid var(--vp-c-divider);
background: var(--vp-c-bg-soft);
border-radius: 12px;
padding: 1.5rem;
margin: 1.5rem 0;
}
.header { margin-bottom: 1rem; }
.title { font-weight: 700; font-size: 1.1rem; }
.subtitle { color: var(--vp-c-text-2); font-size: 0.9rem; }
.tabs {
display: flex;
gap: 0.5rem;
margin-bottom: 1rem;
}
.tab-btn {
padding: 0.4rem 1rem;
border: 1px solid var(--vp-c-divider);
border-radius: 6px;
background: var(--vp-c-bg);
cursor: pointer;
font-size: 0.85rem;
font-weight: 600;
color: var(--vp-c-text-2);
transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--vp-c-brand); }
.tab-btn.active {
background: var(--vp-c-brand);
color: #fff;
border-color: var(--vp-c-brand);
}
.arch-view {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
@media (max-width: 640px) {
.arch-view { grid-template-columns: 1fr; }
}
.layers {
display: flex;
flex-direction: column;
gap: 0.3rem;
}
.layer {
padding: 0.5rem;
border-radius: 6px;
text-align: center;
font-size: 0.78rem;
font-weight: 600;
}
.layer.app { background: rgba(59, 130, 246, 0.12); color: var(--vp-c-text-1); }
.layer.os { background: rgba(245, 158, 11, 0.12); color: var(--vp-c-text-1); }
.layer.hypervisor { background: rgba(239, 68, 68, 0.12); color: var(--vp-c-text-1); }
.layer.docker { background: rgba(6, 182, 212, 0.15); color: var(--vp-c-text-1); }
.layer.host { background: rgba(34, 197, 94, 0.12); color: var(--vp-c-text-1); }
.layer.hardware { background: rgba(107, 114, 128, 0.12); color: var(--vp-c-text-2); }
.layer-label { margin-bottom: 0.25rem; }
.layer-items {
display: flex;
gap: 0.3rem;
justify-content: center;
flex-wrap: wrap;
}
.layer-item {
padding: 0.2rem 0.5rem;
background: var(--vp-c-bg);
border-radius: 4px;
font-size: 0.72rem;
font-weight: 500;
}
.comparison {
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.info-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.4rem 0.6rem;
background: var(--vp-c-bg);
border-radius: 6px;
font-size: 0.8rem;
}
.info-label { color: var(--vp-c-text-2); font-weight: 500; }
.info-value { font-weight: 600; }
.info-value.highlight { color: var(--vp-c-brand); }
</style>