You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
448 B
448 B
Simple borg+ssh docker image
It will limit the ssh so only borg serve
command will be allowed.
It will run the ssh daemon on port 2222, expect a folder with the repos in /repo and the ssh public key being passed as the environment variable KEY
.
For example it can be run with podman:
podman run -user user \
-p 2222:2222 \
-e "KEY=ssh-ed25519 <key> user" \
-v '/path/to/repo:/repo' \
borg