• 0 Posts
  • 39 Comments
Joined 3 months ago
cake
Cake day: July 3rd, 2024

help-circle
  • Is it “fair”? I’d say no, but the world isn’t a fair place. Enormous, unscrupulous corporations are to blame for the untenable situation we collectively find ourselves in. And those corporations aren’t going to be rectifying their behavior any time soon unless forced to.

    That being said, asking individuals to take steps to reduce climate change isn’t an unreasonable thing in my eyes. Because, until corporations are held accountable, asking individuals is the only thing that can possibly improve the situation. Even though it’s like throwing a cup of water on a forest fire.

    The second that Amazon, Shell, BP, ExxonMobil, Chevron, Coke, Pepsi, et al are forced to do their part, I will start throwing my trash out the window again like a proper American. Until then, I’m gonna recycle and encourage my friends and family to do so as well.




  • Hmm, have you made any changes to the firewall on the system hosting the Docker container?

    You might need to edit the firewall with a something like this:

    sudo ufw allow from 192.168.1.0/24 to any port 8096

    Are you using docker-compose to run the Jellyfin service? If so, you might need to add something like this to the docker-compose.yml file:

    network_mode: 'host'
    extra_hosts:
          - "host.docker.internal:host-gateway"
    

    I’m no expert at Docker or UFW, but these are part of my Jellyfin setup, which I’m running on Ubuntu LTS in a Docker container.