Apollo的主站代码Repo是在Github上,镜像Repo是在DockerHub上,拉取时间长也不稳定。
在各个版本中有国内优化,但是不完全一致,所以需要单独看每个版本。
目前最新的Apollo6.0可以参考这两篇文档和代码。
国内Repo快速拉取方式
首先,在Github Apollo的Quick Start中就有说明中国的快速代码拉取。
https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_clone_apollo_repo_from_china.md
国内放在了Gitee上。
git clone https://gitee.com/ApolloAuto/apollo.git
git remote set-url origin git@github.com:YOUR_GITHUB_USERNAME/apollo.git
# Using SSH
git remote add upstream git@github.com:ApolloAuto/apollo.git
git remote -v
git pull --rebase upstream master
还可以参考这个方式来加速github的访问。 https://github.com/ApolloAuto/apollo/blob/master/docs/howto/how_to_solve_slow_pull_from_cn.md
第一步: 浏览器打开如下两个网址,找到对应 IP 地址: http://github.com.ipaddress.com/ http://github.global.ssl.fastly.net.ipaddress.com/
第二步: 编辑 hosts 文件 sudo vim /etc/hosts 加入如下两行:
140.82.xx.xxx github.com 199.232.yy.yyy github.global.ssl.fastly.net
第三步:更新 DNS 缓存(仅限 Mac 用户) Linux 用户请忽略此步骤。
sudo dscacheutil -flushcache
国内镜像的快速拉取启动方式
在运行dev_start.sh时有命令行加速选项:
dev_start.sh --help
OPTIONS:
-h, --help Display this help and exit.
-f, --fast Fast mode without pulling all map volumes.
-g, --geo <us|cn|none> Pull docker image from geolocation specific registry mirror.
-l, --local Use local docker image.
-t, --tag <TAG> Specify docker image with tag <TAG> to start.
-d, --dist Specify Apollo distribution(stable/testing)
--shm-size <bytes> Size of /dev/shm . Passed directly to "docker run"
-y Agree to Apollo License Agreement non-interactively.
stop Stop all running Apollo containers.
是这个-g cn的选项可以加速从国内的镜像站,而非dockerhub拉取镜像。
dev_start.sh -g cn
现在启动apollo足够爽了。
来源:oschina
链接:https://my.oschina.net/fyangw/blog/4738542