a9e304617b
Co-authored-by: Benjamin Bädorf <hello@benjaminbaedorf.eu> Co-authored-by: teutat3s <teutates@mailbox.org> Reviewed-on: https://git.b12f.io/pub-solar/os/pulls/4 Co-authored-by: Benjamin Bädorf <b12f@noreply.example.org> Co-committed-by: Benjamin Bädorf <b12f@noreply.example.org>
12 lines
336 B
Bash
Executable file
12 lines
336 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
# Setup ssh inside container
|
|
mkdir -p ~/.ssh
|
|
echo "$GITEA_SSH_KEY" > ~/.ssh/id_rsa
|
|
echo "[git.b12f.io]:2222 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ4uaREL7acSSCNAX+voDYl1Kj7JipP62fR5x1UyGP9u" >> ~/.ssh/known_hosts
|
|
echo "Host git.b12f.io" >> ~/.ssh/config
|
|
echo " Port 2222" >> ~/.ssh/config
|
|
chmod -R 600 ~/.ssh
|