Get ready to pay more for Netflix’s priciest plan.

Subscribers to Netflix’s Basic and Premium plans will be paying more, with prices rising to $11.99 and $22.99 per month in the US.

  • MahnaMahna@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    9 months ago

    One issue in particular that took a minute to figure out with docker, if you need the containers to talk to eachother, you have to be aware that certain types of docker network connections will not automatically see the other containers, even if both containers are connected to your home network.

    Yup, this is exactly the issue I haven’t been able to figure out. For some reason, the files I download in Sonarr are associated with a user group that Plex isn’t a part of, so Plex can’t see the files (and I’ve tried adding Plex to that group and it still doesn’t work, argh). I know you can specify a UID and other specifics when you initialize a container, but inside the container itself that doesn’t seem to apply, it sets its own user parameters. I’m about ready to throw in the towel and just run the software on my machine itself with a VPN, because then at least everything will be able to talk to each other.

    • NightAuthor@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      9 months ago

      Luckily perms don’t seem to be much of an issue on UnRaid, I think there’s a solid convention for user and group so files are generally accessible to all apps.

      Worst case scenario, you just chmod 777 everything

    • billbasher@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      8 months ago

      Make a new user group and add everyone to it, then change the permissions of the target directory Sudo addgroup newgroup Sudo usermod —append —groups newgroup user Sudo chown -r newgroup:newgroup ./*

      I had the same issue. Adding it all to the same group fixed it for me