Sha256: bd07241d812d8eb4a75d36f74f5c4c446900d14c2d72300c62e0292f82446e39
Contents?: true
Size: 649 Bytes
Versions: 2
Compression:
Stored size: 649 Bytes
Contents
This is `~/.ssh/` of the user oxidized inside the oxidized container. ## What you need here for the hook githubrepo You can store the SSH key needed to access a remote Git repository here. Here is an example how to generate this key. ```shell ssh-keygen -q -t ed25519 -C "Oxidized Push Key@`hostname`" -N "YOURPASSPHRASE" -m PEM -f oxidized-key ``` You also need to store the public keys of the remote git server in known_hosts. If you do not, oxidized will refuse to push to the remote Git with the error `#<Rugged::SshError: invalid or unknown remote ssh hostkey>`, see Issue #2753. ```shell ssh-keyscan git-server.example.com > known_hosts ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
oxidized-0.30.1 | examples/podman-compose/oxidized-ssh/README.md |
oxidized-0.30.0 | examples/podman-compose/oxidized-ssh/README.md |