Compare commits

..

2 Commits

Author SHA1 Message Date
trenoduro
fbf2f78f8e Merge 725d04bfc6 into 3b57602fe8 2023-08-03 12:21:16 +02:00
trenoduro
725d04bfc6 Allow fuse mount inside a docker container 2023-03-06 11:46:21 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -6,8 +6,8 @@ RUN go mod download
COPY . . COPY . .
RUN go build RUN go build
FROM restic/restic:0.16.0 FROM restic/restic:0.15.1
RUN apk add --no-cache rclone bash RUN apk add --no-cache rclone bash fuse
COPY --from=builder /app/autorestic /usr/bin/autorestic COPY --from=builder /app/autorestic /usr/bin/autorestic
ENTRYPOINT [] ENTRYPOINT []
CMD [ "autorestic" ] CMD [ "autorestic" ]

View File

@@ -17,7 +17,7 @@ import (
"github.com/spf13/viper" "github.com/spf13/viper"
) )
const VERSION = "1.7.9" const VERSION = "1.7.7"
type OptionMap map[string][]interface{} type OptionMap map[string][]interface{}
type Options map[string]OptionMap type Options map[string]OptionMap