Upgraded QEMU and added note about seccomp issue

This commit is contained in:
Henning Bocklage 2021-03-03 01:13:01 +01:00
parent 784e8ea1f6
commit 6ae2298c7c
4 changed files with 11 additions and 8 deletions

View File

@ -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)

View File

@ -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

View File

@ -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

View File

@ -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