Scottathon

Members
  • Posts

    62
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Location
    New Brunswick, Canada

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Scottathon's Achievements

Rookie

Rookie (2/14)

0

Reputation

  1. I "updated" my python2.7 version in the plugin, but it turns out it downgraded my python from 2.7.17 to 2.7.11 and broke some of my scripts. Is there any way that I can specify the version installed by the plugin?
  2. I recently bought a 4U 24 bay Supermicro system off a friend, but am unable to get unRAID to see any of my hard drives. The RAID controller is a LSI Megaraid 9265-8i, and there doesn't seem to be any conclusive information out there for putting that card into IT mode. The card is connected to the backplane with a single SFF-8087 cable, though the card has two SFF-8087 ports; the 20 or so SATA drives I have installed are visible in the controller UI, but it seems like the only solution to let unRAID see them is to create single-disk RAID volumes, which seems like a bad idea. According to unRAID, my motherboard is a X9DR3-F. Can anyone recommend an easy to find on ebay replacement card that would fit my use case? Cheers.
  3. It just seemed like a cleaner solution . I'll try to figure out with a daemon then. Thanks for the response!
  4. Darn, really? There's no way to make rclone accessible inside the docker?
  5. Has anyone had any luck getting the rclone plugin to work in conjunction with this docker? I'd love to be able to add a post-processing script to run rclone after something downloads, but I can't figure out how to actually pass rclone into the docker so that it can actually run it. Any ideas?
  6. I'd be eternally grateful if someone could get a template for Ampache, or even instructions to get one of the converted ones from Docker Hub working.
  7. Scottathon

    Turbo write

    Very interesting, I wasn't aware of this feature. Is there any reason to not enable this if I always keep my disks spinning?
  8. Thank you! That worked. Alternately, I realized that I could open up the browser developer tools to remove the disabled attribute from the input element to edit the field.
  9. Is there a way to change the container port for a docker? The UI has greyed out the field which is preventing me from doing so. I understand that most dockers require a specific container port, but is there any way to change it? I'm guessing that the docker configs are maybe stored as text files somewhere, but I don't know where to look. I run multiple Transmission containers, and despite having my ports forwarded correctly, I am reported as unconnectable on an assortment of trackers. I would like to change my container ports to match my host ports so that whatever method Transmission uses to report my port status will stop failing. Thanks!
  10. Thank you for this awesome docker! I have two questions: 1. How can one go about actually retrieving updates to the database? Does it happen automatically? 2. Is it possible to connect to the postgres instance via an external client? By that, I mean can I use pgAdmin III on my Windows box to run queries against the postgres instance inside this docker? Cheers! Scott
  11. That would be greatly appreciated, and thank you for your work on this docker. This is a snippet from my Office.items file that works for WOL: Switch Desktop "Desktop" (Office) { wol="192.168.1.100#FF:FF:FF:FF:FF:FF"} You'll have to change the ip address and the mac address to match the computer you're trying to wake up. Thank you! I mistakenly was starting to think that the first three parts of my openhab instance's IP address had to match that of the computer I was trying to wake, but it turns out that this was incorrect. Thanks again!
  12. That would be greatly appreciated, and thank you for your work on this docker.
  13. Thank you for the updates, Bungy. I've been able to get openhab running, and I'm probably going to buy way too much hardware now that I've got such a neat platform running. I've got an issue specific to openhab being run in a docker container though; I can't get Wake-On-Lan to work. According to ifconfig, docker is running on: docker0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 172.17.42.1 netmask 255.255.0.0 broadcast 0.0.0.0 The box I'm trying to hit is at 192.168.2.102 with a netmask of 255.255.255.0. I'm not 100% sure whether or not the failure is because of the docker's IP or the netmask. Is there some way I can choose the IP and netmask of the docker container?
  14. Firstly, apologies if this is covered elsewhere. I'm at a bit of a loss regarding what to do when I want to add some dependencies to a docker container beyond what was defined in the docker file. For example, I'm running smdion's beets docker. I would like to add this plugin https://github.com/jcazevedo/beets-rymgenre to my configuration, but it requires two dependencies from pip (lxml and requests) that are not in the docker file. What is the best way to get these dependencies added? Do I somehow fork the docker repo on docker.com? Is there some way to add them with the container definition in the unRAID docker UI? If I try to install the dependencies by running "docker exec -it beets bash", will my changes persist when I restart the container? Thanks for your advice. Scott