June 22, 201412 yr Request for Deluge / Deluge Daemon Try https://registry.hub.docker.com/u/seamusv/deluge/ it's based on Ubuntu 14.04
June 22, 201412 yr I am curious if we can find a way to be more generic with: RUN ln -sf /usr/share/zoneinfo/CST6CDT /etc/localtime If I understand what I am seeing this sets the timezone to UTC/GMT -5 hours which is pretty specific. Yes, I'm looking into a way to make this able to be set from the docker run command. This is my timezone. And I was being a bit lazy as I wanted to get things back online as quickly as possible once my Xen VM bit the dust. EDIT: I found a simple way to do this! Updates coming soon! Cool, I'm looking forward to seeing your solution, as i'm still working on setting up my own dockerfiles, and plan to 'borrow' your fix
June 22, 201412 yr I am curious if we can find a way to be more generic with: RUN ln -sf /usr/share/zoneinfo/CST6CDT /etc/localtime If I understand what I am seeing this sets the timezone to UTC/GMT -5 hours which is pretty specific. what i do is pass /etc/localtime to the containter ... so, it would look something like docker run -v /etc/localtime:/etc/localtime:ro <all other switches> needo/nzbget
June 22, 201412 yr Request for Deluge / Deluge Daemon Try https://registry.hub.docker.com/u/seamusv/deluge/ it's based on Ubuntu 14.04 Thanks, i will try that!
June 22, 201412 yr Author I am curious if we can find a way to be more generic with: RUN ln -sf /usr/share/zoneinfo/CST6CDT /etc/localtime If I understand what I am seeing this sets the timezone to UTC/GMT -5 hours which is pretty specific. what i do is pass /etc/localtime to the containter ... so, it would look something like docker run -v /etc/localtime:/etc/localtime:ro <all other switches> needo/nzbget That's the same solution I came up with. Way to take the wind out of my sails.
June 22, 201412 yr needo , I think you should run nzbdrone as root, the behavior is weird if running as nobody==> notifications at the bottom of the screen doesn't get updated....
June 23, 201412 yr Security concerns and common unix sense indicates that you run as few applications as root as possible.
June 23, 201412 yr Security concerns and common unix sense indicates that you run as few applications as root as possible. I know but as nzbdrone doesn't function correctly with nobody... and also you're running an application in a closed vm...so...
June 23, 201412 yr PhAzE's nzbdrone works fine as nobody in his plugin. Is this a particular docker issue ? If so, will it effect other apps ? Don't like Root.
June 23, 201412 yr PhAzE's nzbdrone works fine as nobody in his plugin. Is this a particular docker issue ? If so, will it effect other apps ? Don't like Root. No way to compare how a application is started natively to an application running in a docker....anyway...
June 23, 201412 yr Author CHANGELOG 06/22/2014 (All) Removed timezone symlink. Please use -v /etc/localtime:/etc/localtime:ro to use the same timezone as your unRAID system (CouchPotato) Removed git for the install and use the latest stable v2.4.0 release (plexWatch) Removed git for the install and use the latest stable v1.5.4.2 release (nzbmegasearch) Removed git for the install and use the latest stable v0.46 release (All) Updated documentation
June 23, 201412 yr Are there any plans for SAB and Sickbeard? Since you've done Couch it would be great to have a single creator for all the docker files commonly used.
June 23, 201412 yr Author Are there any plans for SAB and Sickbeard? Since you've done Couch it would be great to have a single creator for all the docker files commonly used. Those are on my list for tomorrow. I also want to add a torrent client to the mix as well as sickrage. Then work on some of the requests people have made in the thread.
June 23, 201412 yr Are there any plans for SAB and Sickbeard? Since you've done Couch it would be great to have a single creator for all the docker files commonly used. Those are on my list for tomorrow. I also want to add a torrent client to the mix as well as sickrage. Then work on some of the requests people have made in the thread. Awesome. Thanks for putting the effort into all of these.
June 23, 201412 yr Needo, I have some dockerfiles here: https://github.com/gfjardim/dockers Maybe it can help you develop your own dockers. Cheers.
June 23, 201412 yr I will reiterate the need for Transmission. Also CrashPlan. I am curious ('cause I'm thinking about switching): what made you choose NZBGet vs SABNzbd, and NZBDrone vs SickBeard? Thanks.
June 23, 201412 yr I will reiterate the need for Transmission. I am curious ('cause I'm thinking about switching): what made you choose NZBGet vs SABNzbd, and NZBDrone vs SickBeard? Thanks. If someone is looking at transmission then you should consider bundling it with flexget.
June 23, 201412 yr Author I will reiterate the need for Transmission. Also CrashPlan. I am curious ('cause I'm thinking about switching): what made you choose NZBGet vs SABNzbd, and NZBDrone vs SickBeard? Thanks. I am working on transmission and deluge as we speak. I chose nzbget over sabnzbd because nzbget is faster and has a smaller hardware footprint. I chose nzbdrone over sickbeard (I used sickbeard for years) due to it being able to monitor downloads and blacklist failed ones.
June 23, 201412 yr Interesting. Being able to blacklist failed download sources would be awesome. Now, about NZBMegaSearch. As near as I can tell from some Googling, it appears to be a local nzb search aggregator. Is that correct? What does it do? Any possibility on a CrashPlan docker? Thank you for crafting all this code for our benefit!
June 23, 201412 yr Author Interesting. Being able to blacklist failed download sources would be awesome. Now, about NZBMegaSearch. As near as I can tell from some Googling, it appears to be a local nzb search aggregator. Is that correct? What does it do? It is but there are some issues with it and the Dev has fallen off the face of the Earth. Any possibility on a CrashPlan docker? http://lime-technology.com/forum/index.php?topic=33864.0 Thank you for crafting all this code for our benefit!
June 23, 201412 yr Author CHANGELOG 06/23/2014 Added deluge: https://registry.hub.docker.com/u/needo/deluge/ Added sabnzbd with par2 multithreaded: https://registry.hub.docker.com/u/needo/sabnzbd/ Added sickbeard: https://registry.hub.docker.com/u/needo/sickbeard/ Added sickrage: https://registry.hub.docker.com/u/needo/sickrage/
June 23, 201412 yr The quality and rate you are putting these out is a testament to both yourself and Docker itself. You have nearly covered the entire gamut of apps most people want here. As stated previously the fact they are Debian based makes them superior in my book. Other docks to consider: mysql or mariadb headless xbmc (this one might be a problem on Debian) flexget (can it be done without pip hmm?) Kudos
June 23, 201412 yr CHANGELOG 06/23/2014 Added deluge: https://registry.hub.docker.com/u/needo/deluge/ Added sabnzbd with par2 multithreaded: https://registry.hub.docker.com/u/needo/sabnzbd/ Added sickbeard: https://registry.hub.docker.com/u/needo/sickbeard/ Added sickrage: https://registry.hub.docker.com/u/needo/sickrage/ Great work!!!! You are on fire
Archived
This topic is now archived and is closed to further replies.