Skip to content
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

remove build arch in documents #622

Merged
merged 1 commit into from
Jul 22, 2024
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
2 changes: 1 addition & 1 deletion docs/kmesh_compile-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Kmesh需要在拥有Kmesh内核增强特性的Linux环境中编译构建。当
注意:kmesh-build镜像需要和源码版本相匹配

```bash
docker pull ghcr.io/kmesh-net/kmesh-build-x86:latest
docker pull ghcr.io/kmesh-net/kmesh-build:latest
```

### 源码编译
Expand Down
2 changes: 1 addition & 1 deletion docs/kmesh_compile.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The Kmesh needs to be compiled and built in the Linux environment with the Kmesh
Note: The `kmesh-build` image needs to match the version of the source code.

```
docker pull ghcr.io/kmesh-net/kmesh-build-x86:latest
docker pull ghcr.io/kmesh-net/kmesh-build:latest
```

### build from source
Expand Down
2 changes: 1 addition & 1 deletion docs/kmesh_deploy_and_develop_in_kind.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ You can follow the steps below to develop in kind:
+ Build your docker image locally:

```shell
docker build --build-arg arch=amd64 -f build/docker/kmesh.dockerfile -t $image_name .
docker build -f build/docker/kmesh.dockerfile -t $image_name .
```

You should specify the `image_name`.
Expand Down
Loading