Skip to content

Commit

Permalink
添加Windows部署教程 (QingdaoU#3)
Browse files Browse the repository at this point in the history
* 添加windows安装指导
  • Loading branch information
Smith-Cruise authored and virusdefender committed Oct 3, 2017
1 parent a319f42 commit 59770ce
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,25 @@
## 安装基础环境
## 非Windows安装基础环境

以下命令都需要 root 用户身份运行,请自行添加 `sudo`

- 必要的工具 `apt-get update && apt-get install -y vim python-pip curl git`
- 安装 docker `curl -sSL https://get.daocloud.io/docker | sh`
- 安装 docker-compose `LC_CTYPE= pip install docker-compose`

## Windows安装基础环境

Windows下面安装会有很多坑,经过测试时,Win10 x64下的`PowerShell`可以正常使用。如果你之前已经尝试过安装oj但失败了,请先重置Docker(Settings菜单->Reset->Reset to factory defaults),以免发生不正常的意外

- 安装Win的Docker工具
- 右击右下角Docker图标,选择Settings进行设置
- 选择`Shared Drives`菜单,之后勾选你想安装OJ的盘符位置(例如勾选D盘),点击Apply
- 输入Windows的账号密码进行文件共享
- 启动`PowerShell`,输入`$env:PWD='{your path}',{you path}`代表你想安装的目录。注意!目录必须在你共享的盘符中(例如设置`D:\qdoj`)。由于你创建的是临时环境变量,`PowerShell`关闭则临时变量作废,因此每次启动前必须重新设置过。当然你也可以选择在Win的环境变量中永久添加名为`PWD`的环境变量(与JDK设置方法相同)

> 接下来简单的介绍下为什么Win下面的Docker为什么这么麻烦。因为Docker使用了很多Linux的特性,所以Windows上面运行Docker实际上通过`Hyper-V`新建了一个Linux虚拟机,然后在虚拟机里面运行Docker。
> 因此目录的挂载需要进行文件共享设置。`docker-compose.yml`里面`volumes`挂载目录写的是`$PWD`,这个在Linux里面代表当前目录,而Win中指的是`PWD`这个环境变量,如果你细心的话你会发现安装的时候它会
> 提示`PWD`不存在,默认使用`/`。结果这个目录就被挂载到了虚拟机中去了,所以Win上面看不见你挂载的目录。
## 准备安装文件

请选择磁盘空间富余的位置,运行下面的命令
Expand Down

0 comments on commit 59770ce

Please sign in to comment.