I used tinyproxy in docker container for a while but it seems that the latest update probably broke something...
I created a image with this dockerfile [really basic just for testing purposes]:
Docker
FROM armhf/alpine:3.5
MAINTAINER [email protected]
RUN apk update && \
apk add --update tinyproxy
Then buil the image:
and running the container with :
Then when I am inside the container I try:
# tinyproxy -d
and I have the error message coming:
Bus error
As test I also tried with ubuntu image:
Docker
FROM armhf/ubuntu:14.04
MAINTAINER [email protected]
RUN apt-get update && \
apt-get -y install tinyproxy
and the inside the container [bash this time]
Currently I am using the docker addon version8.1.114 and docker is
current libreelec version:
I tried with different version of Am I missing something here ?