From bb924ad6ba12aab72ce1eaaf161db3cb15632bff Mon Sep 17 00:00:00 2001 From: Severiano Badajoz Date: Mon, 13 Sep 2021 19:29:12 -0700 Subject: [PATCH] fix, as this wasn't working out of the box on RPi --- ARM-and-Raspberry-Pi-Support-for-Docker-builds.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ARM-and-Raspberry-Pi-Support-for-Docker-builds.md b/ARM-and-Raspberry-Pi-Support-for-Docker-builds.md index 7cf4767..7f4b166 100644 --- a/ARM-and-Raspberry-Pi-Support-for-Docker-builds.md +++ b/ARM-and-Raspberry-Pi-Support-for-Docker-builds.md @@ -28,6 +28,14 @@ Current versions of szurubooru should work out-of-box with ARM architectures. Yo You may also need to use a later version of Postgres (v13). See [#410](https://github.com/rr-/szurubooru/issues/410) +Alpine 3.13 isn't compatible by default with Raspbian and requires an update to libseccomp2: +```bash +$ wget http://ftp.de.debian.org/debian/pool/main/libs/libseccomp/libseccomp2_2.5.1-1_armhf.deb +$ dpkg -i libseccomp2_2.5.1-1_armhf.deb +``` +https://github.com/docker/for-linux/issues/1196#issuecomment-816600988 + + # For release version 2.3 or earlier: Per [this post](https://github.com/rr-/szurubooru/issues/192#issuecomment-476897156) by [WychWitch](https://github.com/WychWitch)