February 14, 20179 yr I'm trying to setup the dvblink docker http://lime-technology.com/forum/index.php?topic=49578.0 but it looks like it's not downloading any files during setup and all my directories are empty. Would somebody else mind having a go just to see if they can get it to install please. I can't work out if it's me or if the docker is broken.
February 16, 20179 yr Author could someone try and install the docker please - don't need a tv card, I just want to see if it should be running. Thanks
February 17, 20179 yr Author 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"]
Archived
This topic is now archived and is closed to further replies.