Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Rice <dan@dnrce.com>2020-01-20 20:15:04 +0300
committerDan Rice <dan@dnrce.com>2020-01-20 21:17:59 +0300
commitdae4e217509b58efc4ec2ce9079a40fb96e6903a (patch)
tree74e5f19edb495e517d73911c677fde056c782f62 /Installer
parentb6720241b32e8c96c4ac2d0b3378b041ea6383b9 (diff)
Build docker images for arm64v8
Diffstat (limited to 'Installer')
-rw-r--r--Installer/Docker/README.md1
-rwxr-xr-xInstaller/Docker/build-images.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/Installer/Docker/README.md b/Installer/Docker/README.md
index bdb5f1d8e..9c17e3633 100644
--- a/Installer/Docker/README.md
+++ b/Installer/Docker/README.md
@@ -17,6 +17,7 @@ Images for the following OS/architecture combinations are available using Docker
* `linux/amd64`
* `linux/arm/v7` - 32-bit ARMv7 devices like the Raspberry Pi 2
+ * `linux/arm64` - 64-bit ARMv8 devices like the Raspberry Pi 4 (when running a 64-bit OS)
## How to use this image
diff --git a/Installer/Docker/build-images.sh b/Installer/Docker/build-images.sh
index a5123e5f9..13cc5b18a 100755
--- a/Installer/Docker/build-images.sh
+++ b/Installer/Docker/build-images.sh
@@ -5,7 +5,7 @@ if [ ! -f "$1" ]; then
exit
fi
-PLATFORMS="linux/amd64,linux/arm/v7"
+PLATFORMS="linux/amd64,linux/arm/v7,linux/arm64"
DEFAULT_CHANNEL=beta
REPOSITORY=duplicati/duplicati
PUSH_TO_REGISTRY=${PUSH_TO_REGISTRY:-true}