-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d761d39
commit 81e3171
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# 使用本项目的方法步骤 | ||
## 1、fork 本项目到自己的空间 | ||
![1](https://github.com/user-attachments/assets/8bfc9d45-76fb-4cf4-be80-19fb202e8a95) | ||
![2](https://github.com/user-attachments/assets/cf990b0c-a149-4f5b-9be8-d0f909f8f402) | ||
![3](https://github.com/user-attachments/assets/d9560061-4092-4ea2-9b8c-a580c9fdcf2d) | ||
## 2、输入要构建的docker名称和标签 | ||
> 如果不输入标签 则默认拉取latest标签,但请确保该镜像有latest <br> | ||
> 如图左侧选项代表要构建的平台。支持amd64、arm64、arm32位三种。<br> | ||
> 若构建的docker镜像小于2GB 推荐发布到release,选择红色框的部分。 绝大多数镜像都是小于2GB的<br> | ||
> 若构建的docker镜像大于2GB 小于5GB 推荐使用另外三个工作流<br> | ||
> 若要构建大于5GB的镜像。本项目不适合。<br> | ||
![4](https://github.com/user-attachments/assets/1a28afc2-2af2-47ff-91fa-0d42282a260a) | ||
![5](https://github.com/user-attachments/assets/5fc5e388-ffb7-4242-aa0e-076136e1e974) | ||
![6](https://github.com/user-attachments/assets/06bf9e37-cfbe-48cc-9012-1c7c92783d6c) | ||
![7](https://github.com/user-attachments/assets/2fb1babf-1179-45fe-a686-2946939e1ac9) | ||
|
||
## 3、加载离线docker镜像 | ||
`docker load -i xxx.tar.gz` <br> | ||
或 <br> | ||
`docker load < xxx.tar.gz` | ||
> 如果是Artifacts压缩文件 则需要先解压。解压后还是 `tar.gz` 无需再解压 直接load即可。 |