- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚在 Linux mint 19 上使用 docker 安装了 gitea,我在旧的 gitea 安装中使用了/data,所以我有一个填充数据库和存储库。当我访问网络时,它似乎工作正常。
问题是使用SSH:
➜ /tmp sudo git clone git@gitealocal:felipe/test.git
Cloning into 'test'...
ssh: connect to host gitealocal port 22: Connection refused
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
➜ /tmp ssh -vT gitealocal
OpenSSH_7.6p1 Ubuntu-4ubuntu0.1, OpenSSL 1.0.2n 7 Dec 2017
debug1: Reading configuration data /home/felipe/.ssh/config
debug1: /home/felipe/.ssh/config line 16: Applying options for gitealocal
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to gitealocal [127.0.1.1] port 10022.
debug1: Connection established.
debug1: identity file /home/felipe/.ssh/id_rsa type 0
debug1: key_load_public: No such file or directory
debug1: identity file /home/felipe/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/felipe/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/felipe/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/felipe/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/felipe/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/felipe/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/felipe/.ssh/id_ed25519-cert type -1
debug1: Local version string SSH-2.0-OpenSSH_7.6p1 Ubuntu-4ubuntu0.1
ssh_exchange_identification: Connection closed by remote host
/var/lib/gitea/ssh
但似乎是对的。
drwx------
和
-rw-------
最佳答案
您需要公开 ssh 端口 22
当您启动 docker 容器时,请尝试:
docker run --expose 22 ...
EXPOSE 22
根据
official docs 到 Dockerfile 和 SSH 登录修复程序:
FROM ubuntu:16.04
RUN apt-get update && apt-get install -y openssh-server
RUN mkdir /var/run/sshd
RUN echo 'root:screencast' | chpasswd
RUN sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config
# SSH login fix. Otherwise user is kicked off after login
RUN sed 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' -i /etc/pam.d/sshd
ENV NOTVISIBLE "in users profile"
RUN echo "export VISIBLE=now" >> /etc/profile
EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]
关于docker - 使用 docker 在 gitea 上 ssh,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54458450/
从二进制文件安装 Gitea 后,我只能从 gitea 主目录运行 Gitea 命令,例如: ./gitea -v 如何设置路径以便终端响应 Gitea 命令?服务器已启动并运行并已创建帐户等。 是否
我正在尝试将 gitea 设置为使用 https 和我从 letsencrypt 以普通用户运行服务时获得的证书。 我已经使用普通用户 git 在端口 80 上使用 http 并使用 iptables
我创建了一个管理员用户,密码包含一个特殊字符。 Gitea 安装成功,但无法登录。我无法获得新密码,因为它说: Sorry, Register Mail Confirmation has been d
我正在尝试将我的 Ubuntu 18.04 VPS 配置为同时作为 nginx 网络服务器和私有(private) gitea 服务器运行。除了来 self 域的任何 404 被传递到 gitea 并
我是托马斯。我有个问题...所以我以前从来没有在go中编码过,但是我看到的越多,我就越喜欢它。 嘿嘿,所以我发布这个的时候有点仓促,请原谅格式错误。 我是新来的,所以我不确定安装是如何工作的,在复制所
我正在测试 Gitea,并希望它触发 Jenkins 构建,非常基本的用例。我知道有现有的 GOGs webhook 插件可以使用,但最近还发现 Jenkins 也有一个 Gitea 插件。 在 GO
关于代码托管,公司是基于Gitlab自建的,它功能全而强大,但是也比较重,我个人偏向于开源、小巧、轻便、实用,所以就排除了Github,在Gogs和Gitea中选者。Gogs在Github有38
Gitea recommends一个单独的Gitea Plugin对于 Jenkins 。我很困惑为什么在创建 PR 时会触发两个相同的构建。 我正在努力实现以下目标: 如果没有 PR,对分支的推送不
是否可以安装Gitea在 Windows Server 2012 或更高版本上?我看不到任何具体说明,几乎所有文档都涉及 *nix 主机。 最佳答案 考虑到 gitea 提出了一个 Windows 二
我刚刚在 Linux mint 19 上使用 docker 安装了 gitea,我在旧的 gitea 安装中使用了/data,所以我有一个填充数据库和存储库。当我访问网络时,它似乎工作正常。 问题是使
预先免责声明:我对 Linux/Ubuntu 整体和系统管理还很陌生,也只是在空闲时间涉足它,所以请耐心和全面地回答你的问题。 我使用 git-lfs 在我的 Ubuntu 20.04 服务器上安装了
预先免责声明:我对 Linux/Ubuntu 整体和系统管理还很陌生,也只是在空闲时间涉足它,所以请耐心和全面地回答你的问题。 我使用 git-lfs 在我的 Ubuntu 20.04 服务器上安装了
我发现一些配置似乎表明 gitea 绑定(bind)到的端口,见下文: 我把机器的实际地址改成了127.0.0.1 (环回)认为我可以制作 gitea accessible only by tunne
目前正在使用 Kubernetes(托管,DO)练习,我遇到了两天无法解决的问题。我有 nginx-ingress 设置以及 cert-manager,以及 git.domain.com 指向负载均衡
我被困在使用 jrcs/letsencrypt-nginx-proxy-companion 的反向代理 jwilder/nginx-proxy 后面部署 docker image gitea/gite
我是一名优秀的程序员,十分优秀!