Docker requests


Recommended Posts

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

 

Link to comment

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

Link to comment

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.

Link to comment

 

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?

Link to comment

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.

Link to comment

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.

 

Link to comment

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

Link to comment

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?

Link to comment

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?

Link to comment

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?

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.