Cloud Native 101 训练指北
相关命令集合在https://gist.github.com/aseaday/a0972045222ccf0c3976f827f56001a1
中文 | English
Vagrant和VirtualBox提供了一个标准的课程实验环境。
- 访问Virtualbox下载VirtualBox的安装程序,选择和系统对应的版本。
- 访问Vagrant:
- 对于Linux用户,下载之后推荐将文件移动到
/usr/local/bin
目录下。 - 对于OS X用户,Vagrant提供了一个DMG安装器,直接安装即可。
- 对于Windows用户,再见。
- 对于Linux用户,下载之后推荐将文件移动到
首先,将仓库克隆到本地
git clone https://github.com/funstory-ai/cloudnative-101.git
之后请在终端中按照图中提示进行操作。
cd cloudnative-101/box
vagrant up # It may take a while because it need to download the virtual machine image from AliyunOSS
vagrant ssh
在这之后会进入虚拟的命令行环境中。
实验结束后请这样结束:
exit
vagrant destroy
- Part 1: Docker是什么以及环境隔离原理。