一. 学生认证 链接到标题
-
github学生认证攻略:
Student Developer Pack包含的有用的:github copilot/jetbrains/teminus
-
github copilot认证攻略:
-
jetbrasin认证攻略:
hit邮箱无法认证
-
terminus认证攻略
直接登录github账号即可
二. github container registry 链接到标题
-
本地登录
echo "your_token_here" | docker login ghcr.io -u your_username --password-stdin #echo token | -u github的username
-
打包容器为镜像
docker commit -m "commit message" -a "author" container_id image_name # 将容器保存为镜像
-
标记docker镜像
docker tag your_image_name ghcr.io/your_username/your_image_name:latest
-
推送镜像
docker push ghcr.io/your_username/your_image_name:latest
-
备注