8000 Update README.md && docs by WenyiDuan · Pull Request #169 · alibaba/havenask · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update README.md && docs #169

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Havenask delivers the following benefits:
CONTAINER_NAME specifies the name of the container.
```
cd ~
git clone git@github.com:alibaba/havenask.git
git clone git@github.com:alibaba/havenask.git -b 1.0.0
cd ~/havenask/docker/havenask
docker pull registry.cn-hangzhou.aliyuncs.com/havenask/ha3_runtime:1.0.0
./create_container.sh <CONTAINER_NAME> registry.cn-hangzhou.aliyuncs.com/havenask/ha3_runtime:1.0.0
Expand Down Expand Up @@ -123,7 +123,7 @@ Havenask 的核心能力与优势,有以下几点:
其中CONTAINER_NAME为指定的容器名
```
cd ~
git clone git@github.com:alibaba/havenask.git
git clone git@github.com:alibaba/havenask.git -b 1.0.0
cd ~/havenask/docker/havenask
docker pull registry.cn-hangzhou.aliyuncs.com/havenask/ha3_runtime:1.0.0
./create_container.sh <CONTAINER_NAME> registry.cn-hangzhou.aliyuncs.com/havenask/ha3_runtime:1.0.0
Expand Down
16 changes: 8 additions & 8 deletions docs/havenask_docs/快速开始.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
havenask镜像托管在Docker Hub,如果Docker Hub访问不稳定,推荐阿里云镜像,镜像平台: amd64
* 运行镜像:registry.cn-hangzhou.aliyuncs.com/havenask/ha3_runtime:latest
* 开发镜像:registry.cn-hangzhou.aliyuncs.com/havenask/ha3_dev:latest
* 运行镜像:registry.cn-hangzhou.aliyuncs.com/havenask/ha3_runtime:1.0.0
* 开发镜像:registry.cn-hangzhou.aliyuncs.com/havenask/ha3_dev:1.0.0

# 启动服务
Havenask引擎提供了可以直接运行的镜像,无需重新编译即可快速构建搜索服务。通过下面的一系列命令可以快速拉起一个单价版havenask服务,如果需要导入全量数据或者需要创建分布式集群,请参考[havenask运维管理工具](./Hape介绍.md)的详细介绍。
Expand All @@ -10,10 +10,10 @@ Havenask引擎提供了可以直接运行的镜像,无需重新编译即可快
其中CONTAINER_NAME为指定的容器名
```
cd ~
git clone git@github.com:alibaba/havenask.git
git clone git@github.com:alibaba/havenask.git -b 1.0.0
cd ~/havenask/docker/havenask
docker pull registry.cn-hangzhou.aliyuncs.com/havenask/ha3_runtime:latest
./create_container.sh <CONTAINER_NAME> registry.cn-hangzhou.aliyuncs.com/havenask/ha3_runtime:latest
docker pull registry.cn-hangzhou.aliyuncs.com/havenask/ha3_runtime:1.0.0
./create_container.sh <CONTAINER_NAME> registry.cn-hangzhou.aliyuncs.com/havenask/ha3_runtime:1.0.0
```

* 登陆容器
Expand Down Expand Up @@ -48,18 +48,18 @@ docker pull registry.cn-hangzhou.aliyuncs.com/havenask/ha3_runtime:latest
## 获取开发镜像

```
docker pull registry.cn-hangzhou.aliyuncs.com/havenask/ha3_dev:latest
docker pull registry.cn-hangzhou.aliyuncs.com/havenask/ha3_dev:1.0.0
```
## 下载代码
```
cd ~
git clone git@github.com:alibaba/havenask.git
git clone git@github.com:alibaba/havenask.git -b 1.0.0
```

## 启动容器
```
cd ~/havenask/docker/havenask
./create_container.sh <CONTAINER_NAME> registry.cn-hangzhou.aliyuncs.com/havenask/ha3_dev:latest
./create_container.sh <CONTAINER_NAME> registry.cn-hangzhou.aliyuncs.com/havenask/ha3_dev:1.0.0
```
## 以ssh的方式登陆容器
```
Expand Down
0