From 7f9195e816ad94bc5f91ba196070d98995c782af Mon Sep 17 00:00:00 2001 From: Henning Bocklage Date: Wed, 3 Mar 2021 01:13:01 +0100 Subject: [PATCH] Upgraded QEMU and added note about seccomp issue --- CHANGELOG.md | 6 +++++- Dockerfile.arm32v7 | 2 +- Dockerfile.arm64v8 | 2 +- README.md | 9 ++++----- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e5ebb2..1bb156f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog - +## 2021-03-03 +- Fixed #58 +- Upgraded Alpine version from 3.12 to 3.13 +- Upgraded QEMU from 4.0.0 to 5.2.0 +- Added warning about error message with debian buster based systems to readme ## 2020-11-01 - Hoster changed - Fixed download folder location (hopefully permanently) diff --git a/Dockerfile.arm32v7 b/Dockerfile.arm32v7 index 02eaf20..b02f4a1 100644 --- a/Dockerfile.arm32v7 +++ b/Dockerfile.arm32v7 @@ -1,7 +1,7 @@ FROM alpine AS builder # Download QEMU, see https://github.com/docker/hub-feedback/issues/1261 -ENV QEMU_URL https://github.com/balena-io/qemu/releases/download/v4.0.0-balena/qemu-4.0.0-balena-arm.tar.gz +ENV QEMU_URL https://github.com/balena-io/qemu/releases/download/v5.2.0%2Bbalena4/qemu-5.2.0.balena4-arm.tar.gz RUN apk add curl && curl -L ${QEMU_URL} | tar zxvf - -C . --strip-components 1 diff --git a/Dockerfile.arm64v8 b/Dockerfile.arm64v8 index 6a24ddf..986c115 100644 --- a/Dockerfile.arm64v8 +++ b/Dockerfile.arm64v8 @@ -1,7 +1,7 @@ FROM alpine AS builder # Download QEMU, see https://github.com/docker/hub-feedback/issues/1261 -ENV QEMU_URL https://github.com/balena-io/qemu/releases/download/v4.0.0-balena/qemu-4.0.0-balena-aarch64.tar.gz +ENV QEMU_URL https://github.com/balena-io/qemu/releases/download/v5.2.0%2Bbalena4/qemu-5.2.0.balena4-aarch64.tar.gz RUN apk add curl && curl -L ${QEMU_URL} | tar zxvf - -C . --strip-components 1 FROM lsiobase/alpine:arm64v8-3.13 diff --git a/README.md b/README.md index 679e7ab..9f5149e 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,10 @@ -# IMPORTANT - NO DOCKERHUB ANYMORE +# IMPORTANT - ISSUES WITH NEW ALPINE VERSION -Greetings. Dockerhub killed all deemix containers without any notice. That's why I have moved to gitlab. We will see if it will get removed here as well. +The new Alpine 3.13 has some known issues with docker hosts running a Debian Buster (only 32bit versions) based distribution (like Raspberry PI OS). -In order to run this container, you will have to exchange your previous image tag from "bocki/deemix" to "registry.gitlab.com/bockiii/deemix-docker" - -That should be it, everything else stays the same. You will only get updates if you switch to the new source! +See this link for more information and also a workaround: https://docs.linuxserver.io/faq#libseccomp +I have successfully used option 3. # deemix-docker