From c181b51360de7e0754663bb94cc3b9f54080a5e4 Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Fri, 9 Jun 2023 12:40:25 +0200 Subject: [PATCH] doc: Update docker build process --- doc/020_installation.rst | 6 ++++++ doc/developer_information.rst | 2 ++ 2 files changed, 8 insertions(+) diff --git a/doc/020_installation.rst b/doc/020_installation.rst index b53c350b1..a39ae91e9 100644 --- a/doc/020_installation.rst +++ b/doc/020_installation.rst @@ -265,6 +265,12 @@ binary, you can get it with `docker pull` like this: $ docker pull restic/restic +The container is also available on the GitHub Container Registry: + +.. code-block:: console + + $ docker pull ghcr.io/restic/restic + Restic relies on the hostname for various operations. Make sure to set a static hostname using `--hostname` when creating a Docker container, otherwise Docker will assign a random hostname each time. diff --git a/doc/developer_information.rst b/doc/developer_information.rst index 307851757..9de517901 100644 --- a/doc/developer_information.rst +++ b/doc/developer_information.rst @@ -127,3 +127,5 @@ required argument is the new version number (in `Semantic Versioning go run helpers/prepare-release/main.go 0.14.0 Checks can be skipped on demand via flags, please see ``--help`` for details. + +The build process requires ``docker``, ``docker-buildx`` and ``qemu-user-static-binfmt``.