選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Robin Thoni bbf48c0cdd modified to "share" ssh host port 6年前
gogs modified to "share" ssh host port 6年前
postgresql init 6年前
.gitignore init 6年前
README modified to "share" ssh host port 6年前
docker-compose.yml modified to "share" ssh host port 6年前
env modified to "share" ssh host port 6年前

README

Configure real git user
=======================

Create user and SSH key:
```
. ./env
groupadd -g "${PUID}" git
useradd -g git -u "${PGID}" git -d "$(pwd)"/data/gogs/git
sudo -u git ssh-keygen -f ~git/.ssh/id_rsa -N ''
echo -n 'no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ' | sudo -u git cat - ~git/.ssh/id_rsa.pub | sudo -u git tee ~git/.ssh/authorized_real_keys
```

/app/gogs/gogs:
```
#!/bin/sh
ssh -p 35021 -o StrictHostKeyChecking=no git@127.0.0.1 "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $0 $@"
```