https://github.com/t3easy/docker-veeam-backup-repository
https://github.com/t3easy/docker-veeam-backup-repository
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/t3easy/docker-veeam-backup-repository
- Owner: t3easy
- Created: 2018-02-01T10:06:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-01T16:08:35.000Z (over 8 years ago)
- Last Synced: 2025-04-10T03:51:28.168Z (over 1 year ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 6
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Usage
Prepare your NAS/Server: Install Docker, create a shared folder for the backups.
Create a ssh key pair, e.g. `ssh-keygen -t rsa -C "your.email@example.com" -b 4096`
Copy over the public key to your NAS/Server.
Mount the public key to `/root/.ssh/authorized_keys` and a folder of your NAS to store your backups outside the container.
Expose a port and map it to port 22.
```bash
docker run --rm t3easy/veeam-backup-repository -p 2222:22 \
-v $PWD/veeam.pub:/root/.ssh/authorized_keys \
-v /volume2/VeeamBackup:/veeam
```