dvblink docker not downloading any files?


DZMM

Recommended Posts

ok, someone who understands unRAID much better than me has tried installing this docker and it doesn't install.  Can anyone see quickly in the code why it's failing?  It doesn't look like a lot of commands so hopefully something will jump out straight away.

 

 

I've tested the http://download.dvblogic.com/9283649d35acc98ccf4d0c2287cdee62/ link in the docker and it downloads a file, so I'm at a loss why the docker installation installs no files at all.

 

Thanks in advance for any help

 

 

 

 

 

 

# Based on Ubuntu
############################################################ 


# Set the base image to Ubuntu 
FROM ubuntu:14.04


# File Author / Maintainer 
MAINTAINER chvb


# Update the repository sources list 
RUN apt-get update -q
RUN apt-get upgrade -qy


# Install needed components
RUN apt-get install lsof sysstat wget openssh-server supervisor dbus dbus-x11 consolekit libpolkit-agent-1-0 libpolkit-backend-1-0 policykit-1 python-aptdaemon python-pycurl python3-aptdaemon.pkcompat -qy 


## Data
RUN ln -s /opt/DVBLink /data


## Config
RUN ln -s /usr/local/bin/dvblink/config /config


#download DVBLink
RUN echo "wget -O dvblink-server-pc-linux-ubuntu-64bit.deb http://download.dvblogic.com/9283649d35acc98ccf4d0c2287cdee62/" > dl.sh
RUN chmod +x dl.sh 
RUN ./dl.sh


################## BEGIN INSTALLATION #########################
RUN dpkg -i dvblink-server-pc-linux-ubuntu-64bit.deb
RUN chmod 777 -R /opt/DVBLink/
RUN chmod 777 -R /usr/local/bin/dvblink/
RUN mkdir -p /var/log/supervisord
RUN mkdir -p /var/run/sshd
RUN mkdir /var/run/dbus
RUN locale-gen en_US.utf8
RUN useradd docker -d /home/docker -g users -G sudo -m                                                                                                                    
RUN echo docker:test123 | chpasswd
ADD /etc/supervisor/conf.d/supervisord.conf /etc/supervisor/conf.d/supervisord.conf 
##################### INSTALLATION END #####################


# Startup
ENTRYPOINT ["/usr/bin/supervisord"]
CMD ["-c", "/etc/supervisor/conf.d/supervisord.conf"]


# Expose the default portonly 39876 is nessecary for admin access 
EXPOSE 22 39876 8100


# set Directories
VOLUME ["/config", "/recordings", "/data"]

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.