also enable azure and google cloud

This commit is contained in:
cupcakearmy 2021-11-01 00:19:32 +01:00
parent 3dd3956d64
commit cd7a5cbc13
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 3 additions and 0 deletions

View File

@ -182,6 +182,8 @@ func (b Backend) ExecDocker(l Location, args []string) (string, error) {
env["RESTIC_REPOSITORY"] = "/repo"
case "b2":
case "s3":
case "azure":
case "gs":
// No additional setup needed
case "rclone":
// Read host rclone config and mount it into the container
@ -192,6 +194,7 @@ func (b Backend) ExecDocker(l Location, args []string) (string, error) {
splitted := strings.Split(strings.TrimSpace(configFile), "\n")
configFilePath := splitted[len(splitted)-1]
docker = append(docker, "--volume", configFilePath+":"+"/root/.config/rclone/rclone.conf:ro")
// Install rclone in the container
args = append([]string{"apk", "add", "rclone", "&&"}, args...)
default:
return "", fmt.Errorf("Backend type \"%s\" is not supported as volume endpoint", b.Type)