Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.43 KB

README_ZH.md

File metadata and controls

49 lines (33 loc) · 1.43 KB

cloudnative-101

Cloud Native 101 训练指北

相关命令集合在https://gist.github.com/aseaday/a0972045222ccf0c3976f827f56001a1

中文English

安装Vagrant和VirtualBox

Vagrant和VirtualBox提供了一个标准的课程实验环境。

  1. 访问Virtualbox下载VirtualBox的安装程序,选择和系统对应的版本。
  2. 访问Vagrant:
    • 对于Linux用户,下载之后推荐将文件移动到/usr/local/bin目录下。
    • 对于OS X用户,Vagrant提供了一个DMG安装器,直接安装即可。
    • 对于Windows用户,再见。

开始之前

首先,将仓库克隆到本地

git clone https://github.com/funstory-ai/cloudnative-101.git

之后请在终端中按照图中提示进行操作。

gif1

开始

cd cloudnative-101/box 
vagrant up # It may take a while because it need to download the virtual machine image from AliyunOSS
vagrant ssh

gif2

在这之后会进入虚拟的命令行环境中。

实验结束后请这样结束:

exit
vagrant destroy

Parts

  • Part 1: Docker是什么以及环境隔离原理。