Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Docker requests

Featured Replies

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

 

  • Replies 566
  • Views 146.5k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

  • Ente: https://ente.io   Github: https://github.com/ente-io/ente/tree/main/server   Their instructions: https://help.ente.io/self-hosting/

  • marcinwhite
    marcinwhite

    https://github.com/BeryJu/authentik - authentik is an open-source Identity Provider focused on flexibility and versatility. You can use authentik in an existing environment to add support for new prot

  • Would like to put in a request for a Stoat chat server docker template. GitHub GitHub - stoatchat/self-hosted: Deploy Stoat on your own... Deploy Stoat on your own infrastructure! Contribute to stoat

Posted Images

  • 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  ::)

Logitech Media Server would be nice!

Second on the Logitech Media Server. Also would like to see MySQL and Dropbox (Just saw that hurricane has one for Dropbox).

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

Serviio?

The unraid plugin has not been yet updated.

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

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.

 

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?

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.

Anyone dockerized airvideo yet?

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

 

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.

 

requesting:

 

media browser

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

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?

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?

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?

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...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.