Compare commits

..

3 Commits

Author SHA1 Message Date
5afad86e37 1.5.6 2022-03-10 16:36:26 +01:00
ba9e090695 Merge pull request #167 from fariszr/patch-1
Add bash to docker image
2022-03-10 16:32:43 +01:00
FarisZR
05def04770 Fix #166 2022-03-10 18:28:46 +03:00
4 changed files with 9 additions and 2 deletions

View File

@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.5.6] - 2022-03-10
### Fixed
- Add bash in docker image for hooks. @fariszr
## [1.5.5] - 2022-02-16
### Changed

View File

@@ -7,6 +7,6 @@ COPY . .
RUN go build
FROM alpine
RUN apk add --no-cache restic rclone
RUN apk add --no-cache restic rclone bash
COPY --from=builder /app/autorestic /usr/bin/autorestic
CMD [ "autorestic" ]

View File

@@ -5,6 +5,7 @@ This amazing people helped the project!
- @agateblue - Docs, Pruning, S3.
- @g-a-c - Update/Install bugs.
- @jjromannet - Bug fixes.
- @fariszr - Bug fixes.
- @david-boles - Docs.
- @SebDanielsson - Brew.
- @n194 - AUR Package.

View File

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