mirror of
https://github.com/restic/rest-server.git
synced 2025-10-19 15:43:21 +00:00
Update README.md
Document restic v0.7.1 as the required version to run with Rest Server. Closes #11
This commit is contained in:
parent
cae51e1478
commit
9a6bb5eebe
1 changed files with 8 additions and 4 deletions
12
README.md
12
README.md
|
@ -15,10 +15,14 @@ data remotely, using [restic](https://github.com/restic/restic) backup client.
|
|||
Rest Server requires Go 1.7 or higher to build. The only tested compiler is the official Go compiler. Building server
|
||||
with gccgo may work, but is not supported.
|
||||
|
||||
The required version of restic backup client to use with rest-server is
|
||||
[v0.6.1](https://github.com/restic/restic/releases/tag/v0.6.1) or higher, due to some
|
||||
[changes](https://github.com/restic/restic/commit/1a538509d0232f1a532266e07da509875fe9e0d6) in the REST backend API and
|
||||
performance [improvements](https://github.com/restic/restic/commit/04b262d8f10ba9eacde041734c08f806c4685e7f).
|
||||
The required version of restic backup client to use with Rest Server is
|
||||
[v0.7.1](https://github.com/restic/restic/releases/tag/v0.7.1) or higher.
|
||||
|
||||
If you have a local repository created with an older version of restic client, which you would now like to serve via
|
||||
Rest Server, you need to first create missing subdirectories in the data directory. Run this simple one-liner in the
|
||||
repository directory:
|
||||
|
||||
```for i in {0..255}; do mkdir -p $(printf "data/%02x" $i); done```
|
||||
|
||||
## Installation
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue