美文网首页
在容器里运行的 gitea 如何通过 ssh 秘钥访问?

在容器里运行的 gitea 如何通过 ssh 秘钥访问?

作者: Spooking | 来源:发表于2024-07-03 13:35 被阅读0次

    首先通过 ssh-keygen -C "xxx@xxx.com" 命令创建秘钥(id_rsa)和公钥(id_rsa.pub)
    这两个文件存放在 ~/.ssh/ 目录下面

    使用 cat ~/.ssh/id_rsa.pub 将公钥的内容打印出来。
    然后复制ssh-rsa 开头的这几行到 gitea 的秘钥管理中


    是箭头所指的地方,不是后面的那个

    然后在gitea的容器上,将22号端口映射到母鸡的222端口

    直接使用下面的命令就可以拉取了。

    git clone ssh://git@127.0.0.1:222/spooking/xxxx.git
    

    如果你有多个秘钥可以配置 ~/.ssh/config

    # home nas git
    Host 127.0.0.1
    User git
    Port 222
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa_git
    
    

    注意

    ~/.ssh/id_rsa 和 ~/.ssh/config 权限必须是 600 !

    chmod 600 ~/.ssh/id_rsa
    chmod 600 ~/.ssh/config
    

    文章转自我的博客:https://spooking.cn/archives/65.html

    相关文章

      网友评论

          本文标题:在容器里运行的 gitea 如何通过 ssh 秘钥访问?

          本文链接:https://www.haomeiwen.com/subject/aaibcjtx.html