June 27, 201412 yr Might be an idea to pin this... Just a Thread where we put the requests for docker apps we want .... So not to clutter up the other release posts ... Just an idea ... you can use the message icons "enhancement request" if you request something and i hope we can change it to "enhancement implemented" when somebody made it
June 27, 201412 yr Author I will kick it off with a request for a logmein hamachi docker... it's the only one missing for me i still have the swap file and the VFS recycle bin plugin running but i hope Limetech will add those to the basic image one day not tooooo far away
June 29, 201412 yr Second on the Logitech Media Server. Also would like to see MySQL and Dropbox (Just saw that hurricane has one for Dropbox).
June 29, 201412 yr BOX.com There's no Linux Sync native cabability but they have webdav and some folks use copy.com http://seb.so/50gb-of-cloud-space-with-box-automatically-syncd-on-linux-with-webdav/#box_mountwebdav https://support.box.com/hc/communities/public/questions/200285268-Box-Sync-for-Linux-anyone-
June 29, 201412 yr Second on the Logitech Media Server. Also would like to see MySQL and Dropbox (Just saw that hurricane has one for Dropbox). mariadb has been created already probably best just to use that
June 30, 201412 yr Would it be possible to have a rtorrent/rutorrent docker? I would also love that!!
June 30, 201412 yr Serviio? The unraid plugin has not been yet updated. Checkout out PhAZe's updates on some popular plugins http://lime-technology.com/forum/index.php?topic=33341.msg306949#msg306949
June 30, 201412 yr Would it be possible to have a rtorrent/rutorrent docker? I would also love that!! For it to be universally useful a flexget container would also need created. I have used rTorrent for as long as I can remember and rutorrent for a 3+f years and TBH i find deluge better now. I got fed up with how stagnant rTorrent is e.g webseeds are available in every client but has an open feature request for 8+ years in rT Do yourself a favour checkout deluge. It used to be crap but now it good now. I think we should change this thread to a poll and use it as a poor mans voting system
June 30, 201412 yr i think we should change this thread to a poll and use it as a poor mans voting system Not a bad idea. For the most part a torrent client is a torrent client. If it's universally accepted by private trackers and handles RSS announcement then I can't think there is to much more needed.
June 30, 201412 yr Would it be possible to have a rtorrent/rutorrent docker? I would also love that!! For it to be universally useful a flexget container would also need created. I have used rTorrent for as long as I can remember and rutorrent for a 3+f years and TBH i find deluge better now. I got fed up with how stagnant rTorrent is e.g webseeds are available in every client but has an open feature request for 8+ years in rT Do yourself a favour checkout deluge. It used to be crap but now it good now. I think we should change this thread to a poll and use it as a poor mans voting system Your probably right to just use Deluge. The only thing I didn't like about it was viewing it on an iPhone screen. Rutorrent worked much better... But then if I ask myself how often do I actually use my phone to view things and the answer is not that often. I think I read that there was already a Deluge docker. Is that correct?
June 30, 201412 yr yup see the sticky in this forum. I am all for variation and preference but rT + ruT + www server + flexget is not exactly slick. it is so easy to try something in docker you might as well have a shot and if an app is lacking then push for an alternative.
July 1, 201412 yr Would be nice to see the following dockers created, then I might be able to give it ago and see if it performs any better than my Arch Xen image Requests: TVHeadend Madsonic / Subsonic Cheers
July 1, 201412 yr Second on the Logitech Media Server. Also would like to see MySQL and Dropbox (Just saw that hurricane has one for Dropbox). mariadb has been created already probably best just to use that Yes, I ran across that one after posting. I will take a look at that once I get my unRAID 6 server built - my parts have been ordered. Thanks.
July 1, 201412 yr I've got a madsonic docker here: botez/docker-madsonic https://registry.hub.docker.com/u/botez/docker-madsonic/
July 1, 201412 yr I've got a madsonic docker here: botez/docker-madsonic https://registry.hub.docker.com/u/botez/docker-madsonic/ Ahh Thanks, noticed it after I submitted my post! Just need a TVHeadend docker really before I try it out though
July 4, 201412 yr Requesting AirVideo Docker - found this on github instructions for ubuntu cd airvideo-server docker pull ubuntu docker build -t my-airvideo-server . docker run -d -u avuser -e LANG=C.UTF-8 -p 45631:45631 -p 46631:46631 -v /path/to/my/movies:/Movies my-airvideo-server airvideo-server dockerfile # ref: http://www.inmethod.com/forum/posts/list/1856.page FROM ubuntu:14.04 MAINTAINER menghan ADD multiverse.sources.list /etc/apt/sources.list.d/ RUN apt-get update RUN apt-get -y upgrade # dependicies of airvideo RUN apt-get -y --no-install-recommends install libmp3lame0 libx264-dev libfaac0 faac openjdk-6-jre avahi-daemon # install fonts RUN apt-get -y --no-install-recommends install ttf-wqy-microhei fonts-dejavu # curl RUN apt-get -y --no-install-recommends install curl # airvideo server's files ADD AirVideoServerLinux.properties /opt/airvideo-server/ ADD airvideo-server.service /etc/avahi/services/ ADD airvideo-server /usr/bin/ RUN mkdir -p /opt/airvideo-server/bin RUN curl -s http://s3.amazonaws.com/AirVideo/Linux-2.4.6-beta3/AirVideoServerLinux.jar -o /opt/airvideo-server/AirVideoServerLinux.jar # compile avconv RUN apt-get install -y build-essential libmp3lame-dev libfaac-dev yasm pkg-config && \ cd /tmp && \ curl -s http://s3.amazonaws.com/AirVideo/Linux-2.4.6-beta3/libav.tar.bz2 -o libav.tar.bz2 && \ tar xf libav.tar.bz2 && \ cd libav && \ ./configure --enable-pthreads --disable-shared --enable-static --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libfaac && \ make -j4 && \ strip -s -o /opt/airvideo-server/bin/avconv /tmp/libav/avconv && \ apt-get purge -y build-essential libmp3lame-dev libfaac-dev yasm pkg-config && \ apt-get autoremove -y && \ apt-get autoclean && \ rm -rf /tmp/libav.tar.bz2 /tmp/libav # add user RUN adduser --uid 1000 --group --system avuser RUN mkdir -p /home/avuser/.air-video-server RUN chown avuser:avuser /home/avuser/.air-video-server Is it possible to adapt this to use in unraid setup
July 5, 201412 yr Requesting AirVideo Docker - found this on github instructions for ubuntu cd airvideo-server docker pull ubuntu docker build -t my-airvideo-server . docker run -d -u avuser -e LANG=C.UTF-8 -p 45631:45631 -p 46631:46631 -v /path/to/my/movies:/Movies my-airvideo-server airvideo-server dockerfile # ref: http://www.inmethod.com/forum/posts/list/1856.page FROM ubuntu:14.04 MAINTAINER menghan ADD multiverse.sources.list /etc/apt/sources.list.d/ RUN apt-get update RUN apt-get -y upgrade # dependicies of airvideo RUN apt-get -y --no-install-recommends install libmp3lame0 libx264-dev libfaac0 faac openjdk-6-jre avahi-daemon # install fonts RUN apt-get -y --no-install-recommends install ttf-wqy-microhei fonts-dejavu # curl RUN apt-get -y --no-install-recommends install curl # airvideo server's files ADD AirVideoServerLinux.properties /opt/airvideo-server/ ADD airvideo-server.service /etc/avahi/services/ ADD airvideo-server /usr/bin/ RUN mkdir -p /opt/airvideo-server/bin RUN curl -s http://s3.amazonaws.com/AirVideo/Linux-2.4.6-beta3/AirVideoServerLinux.jar -o /opt/airvideo-server/AirVideoServerLinux.jar # compile avconv RUN apt-get install -y build-essential libmp3lame-dev libfaac-dev yasm pkg-config && \ cd /tmp && \ curl -s http://s3.amazonaws.com/AirVideo/Linux-2.4.6-beta3/libav.tar.bz2 -o libav.tar.bz2 && \ tar xf libav.tar.bz2 && \ cd libav && \ ./configure --enable-pthreads --disable-shared --enable-static --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libfaac && \ make -j4 && \ strip -s -o /opt/airvideo-server/bin/avconv /tmp/libav/avconv && \ apt-get purge -y build-essential libmp3lame-dev libfaac-dev yasm pkg-config && \ apt-get autoremove -y && \ apt-get autoclean && \ rm -rf /tmp/libav.tar.bz2 /tmp/libav # add user RUN adduser --uid 1000 --group --system avuser RUN mkdir -p /home/avuser/.air-video-server RUN chown avuser:avuser /home/avuser/.air-video-server Is it possible to adapt this to use in unraid setup If it's a docker, then it already works. Are you asking someone to do it in tiny core linux or phusion instead of Ubuntu?
July 5, 201412 yr Requesting AirVideo Docker - found this on github instructions for ubuntu cd airvideo-server docker pull ubuntu docker build -t my-airvideo-server . docker run -d -u avuser -e LANG=C.UTF-8 -p 45631:45631 -p 46631:46631 -v /path/to/my/movies:/Movies my-airvideo-server airvideo-server dockerfile # ref: http://www.inmethod.com/forum/posts/list/1856.page FROM ubuntu:14.04 MAINTAINER menghan ADD multiverse.sources.list /etc/apt/sources.list.d/ RUN apt-get update RUN apt-get -y upgrade # dependicies of airvideo RUN apt-get -y --no-install-recommends install libmp3lame0 libx264-dev libfaac0 faac openjdk-6-jre avahi-daemon # install fonts RUN apt-get -y --no-install-recommends install ttf-wqy-microhei fonts-dejavu # curl RUN apt-get -y --no-install-recommends install curl # airvideo server's files ADD AirVideoServerLinux.properties /opt/airvideo-server/ ADD airvideo-server.service /etc/avahi/services/ ADD airvideo-server /usr/bin/ RUN mkdir -p /opt/airvideo-server/bin RUN curl -s http://s3.amazonaws.com/AirVideo/Linux-2.4.6-beta3/AirVideoServerLinux.jar -o /opt/airvideo-server/AirVideoServerLinux.jar # compile avconv RUN apt-get install -y build-essential libmp3lame-dev libfaac-dev yasm pkg-config && \ cd /tmp && \ curl -s http://s3.amazonaws.com/AirVideo/Linux-2.4.6-beta3/libav.tar.bz2 -o libav.tar.bz2 && \ tar xf libav.tar.bz2 && \ cd libav && \ ./configure --enable-pthreads --disable-shared --enable-static --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libfaac && \ make -j4 && \ strip -s -o /opt/airvideo-server/bin/avconv /tmp/libav/avconv && \ apt-get purge -y build-essential libmp3lame-dev libfaac-dev yasm pkg-config && \ apt-get autoremove -y && \ apt-get autoclean && \ rm -rf /tmp/libav.tar.bz2 /tmp/libav # add user RUN adduser --uid 1000 --group --system avuser RUN mkdir -p /home/avuser/.air-video-server RUN chown avuser:avuser /home/avuser/.air-video-server Is it possible to adapt this to use in unraid setup If it's a docker, then it already works. Are you asking someone to do it in tiny core linux or phusion instead of Ubuntu? i cannot get it to work for unraid docker - have you tried?
July 5, 201412 yr Requesting AirVideo Docker - found this on github instructions for ubuntu cd airvideo-server docker pull ubuntu docker build -t my-airvideo-server . docker run -d -u avuser -e LANG=C.UTF-8 -p 45631:45631 -p 46631:46631 -v /path/to/my/movies:/Movies my-airvideo-server airvideo-server dockerfile # ref: http://www.inmethod.com/forum/posts/list/1856.page FROM ubuntu:14.04 MAINTAINER menghan ADD multiverse.sources.list /etc/apt/sources.list.d/ RUN apt-get update RUN apt-get -y upgrade # dependicies of airvideo RUN apt-get -y --no-install-recommends install libmp3lame0 libx264-dev libfaac0 faac openjdk-6-jre avahi-daemon # install fonts RUN apt-get -y --no-install-recommends install ttf-wqy-microhei fonts-dejavu # curl RUN apt-get -y --no-install-recommends install curl # airvideo server's files ADD AirVideoServerLinux.properties /opt/airvideo-server/ ADD airvideo-server.service /etc/avahi/services/ ADD airvideo-server /usr/bin/ RUN mkdir -p /opt/airvideo-server/bin RUN curl -s http://s3.amazonaws.com/AirVideo/Linux-2.4.6-beta3/AirVideoServerLinux.jar -o /opt/airvideo-server/AirVideoServerLinux.jar # compile avconv RUN apt-get install -y build-essential libmp3lame-dev libfaac-dev yasm pkg-config && \ cd /tmp && \ curl -s http://s3.amazonaws.com/AirVideo/Linux-2.4.6-beta3/libav.tar.bz2 -o libav.tar.bz2 && \ tar xf libav.tar.bz2 && \ cd libav && \ ./configure --enable-pthreads --disable-shared --enable-static --enable-gpl --enable-libx264 --enable-libmp3lame --enable-nonfree --enable-libfaac && \ make -j4 && \ strip -s -o /opt/airvideo-server/bin/avconv /tmp/libav/avconv && \ apt-get purge -y build-essential libmp3lame-dev libfaac-dev yasm pkg-config && \ apt-get autoremove -y && \ apt-get autoclean && \ rm -rf /tmp/libav.tar.bz2 /tmp/libav # add user RUN adduser --uid 1000 --group --system avuser RUN mkdir -p /home/avuser/.air-video-server RUN chown avuser:avuser /home/avuser/.air-video-server Is it possible to adapt this to use in unraid setup If it's a docker, then it already works. Are you asking someone to do it in tiny core linux or phusion instead of Ubuntu? i cannot get it to work for unraid docker - have you tried? No, but it seems the reason it's not working is it hadn't been submitted to the docker registry. Could be the author is still working on it. Can you post the link to the github page?
July 5, 201412 yr No, but it seems the reason it's not working is it hadn't been submitted to the docker registry. Could be the author is still working on it. Can you post the link to the github page? https://github.com/menghan/airvideo-server-in-docker
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.