From bdd43bd430c3107c9f50e1dfcc638d8497ae85c5 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Wed, 9 Aug 2017 20:13:34 +0200 Subject: [PATCH] Add a section to the manual --- doc/manual.rst | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/doc/manual.rst b/doc/manual.rst index 0282acebd..5e55cead4 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -371,6 +371,33 @@ The number of concurrent connections to the B2 service can be set with the `-o b2.connections=10`. By default, at most five parallel connections are established. +Microsoft Azure Blob Storage +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +You can also store backups on Microsoft Azure Blob Storage. Export the Azure +account name and key as follows: + +.. code-block:: console + + $ export AZURE_ACCOUNT_NAME= + $ export AZURE_ACCOUNT_KEY= + +Afterwards you can initialize a repository in a container called `foo` in the +root path like this: + +.. code-block:: console + + $ restic -r azure:foo:/ init + enter password for new backend: + enter password again: + + created restic backend a934bac191 at azure:foo:/ + [...] + +The number of concurrent connections to the B2 service can be set with the +`-o azure.connections=10`. By default, at most five parallel connections are +established. + Password prompt on Windows ~~~~~~~~~~~~~~~~~~~~~~~~~~