From 319a6f8da838ea7a03f83e5e0616070ecbdf308e Mon Sep 17 00:00:00 2001 From: onresize Date: Fri, 12 Apr 2024 00:02:38 +0800 Subject: [PATCH] update --- .../docker\345\205\245\351\227\250.md" | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git "a/docs/\346\212\200\346\234\257\346\200\273\347\273\223/\350\270\251\345\235\221\346\200\273\347\273\223/docker\345\205\245\351\227\250.md" "b/docs/\346\212\200\346\234\257\346\200\273\347\273\223/\350\270\251\345\235\221\346\200\273\347\273\223/docker\345\205\245\351\227\250.md" index cbd4d66..a3c0c5b 100644 --- "a/docs/\346\212\200\346\234\257\346\200\273\347\273\223/\350\270\251\345\235\221\346\200\273\347\273\223/docker\345\205\245\351\227\250.md" +++ "b/docs/\346\212\200\346\234\257\346\200\273\347\273\223/\350\270\251\345\235\221\346\200\273\347\273\223/docker\345\205\245\351\227\250.md" @@ -102,4 +102,12 @@ server {

-代码示例:[react-ts-vite-admin](https://github.com/onresize/react-ts-vite-admin) \ No newline at end of file +代码示例:[react-ts-vite-admin](https://github.com/onresize/react-ts-vite-admin) + +- #### 发布到[github packages](https://github.com/features/packages) +- 先去设置github的token、在账户设置里面:『Github头像』->『Settings』->『Developer Settings』->『Personal access tokens』、选择 Tokens (classic)、至少勾选 `read:packages` 和 `write:packages` 权限 +- `执行以下命令`: +- 1.登入: `docker login ghcr.io -u github用户名 -p 刚才获取的token` +- 2.给镜像添加标签:`docker tag 镜像id ghcr.io/github用户名/镜像名:latest`、这里镜像id可以通过 `docker images` 查看 +- 3.发布到github packages:`docker push ghcr.io/github用户名/镜像名:latest`、latest为最新版本、也可自行设置版本号 +- 4.查看:访问 `https://github.com/github用户名?tab=packages` \ No newline at end of file