From a1f1113901bbe676c06cb4e2f44f4363268df594 Mon Sep 17 00:00:00 2001 From: yeasy Date: Wed, 18 Mar 2026 19:43:18 -0700 Subject: [PATCH] Clarify Docker consistency diagrams --- 01_introduction/1.2_what.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01_introduction/1.2_what.md b/01_introduction/1.2_what.md index 09bdeb6..3785057 100644 --- a/01_introduction/1.2_what.md +++ b/01_introduction/1.2_what.md @@ -24,7 +24,7 @@ flowchart LR direction TB C["Python 3.11
Ubuntu 22.04
不同版本的库"] --> D["运行失败!"] end - A -. "≠" .-> C + A -.->|不一致| C ``` 有了 Docker: @@ -39,7 +39,7 @@ flowchart LR direction TB C["同一个镜像
(完全一致)"] --> D["运行正常!"] end - A === "=" === C + A == 一致 ==> C ``` ### 1.2.3 Docker vs 虚拟机