%%{init: {"theme": "base", "themeVariables": {"primaryColor": "#fabd2f", "primaryTextColor": "#282828", "primaryBorderColor": "#b57614", "lineColor": "#7c6f64", "secondaryColor": "#83a598", "tertiaryColor": "#b8bb26", "background": "#fbf1c7", "mainBkg": "#ebdbb2", "fontFamily": "Tahoma, sans-serif"}}}%% flowchart LR subgraph Era1["ยุค Works on My Machine"] A["ติดตั้ง dependency เองenvironment ไม่ตรงกัน"] end subgraph Era2["ยุค Container"] B["Imageblueprint"] C["Containerinstance ที่รันจริง"] end subgraph Era3["ยุค Compose / Multi-service"] D["docker-composefrontend backend db"] E["Volume + Networkเชื่อมบริการ"] end A --> B --> C --> D --> E
%%{init: {"theme": "base", "themeVariables": {"primaryColor": "#fabd2f", "primaryTextColor": "#282828", "primaryBorderColor": "#b57614", "lineColor": "#7c6f64", "secondaryColor": "#83a598", "tertiaryColor": "#b8bb26", "background": "#fbf1c7", "mainBkg": "#ebdbb2", "fontFamily": "Tahoma, sans-serif"}}}%% flowchart TD A["Source Codeโค้ดโปรเจกต์"] --> B["Dockerfileขั้นตอน build"] B --> C["docker buildสร้าง image"] C --> D["Imageblueprint"] D --> E["docker runรัน container"] E --> F["Containerแอปทำงาน"]