Azyx

Members
  • Posts

    8
  • Joined

  • Last visited

Recent Profile Visitors

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

Azyx's Achievements

Noob

Noob (1/14)

1

Reputation

  1. Ohhhh that's true! I'm new to Docker and containers. Thanks a lot Jonathanm.
  2. Thanks for the reply! Yea but they both have their network set to bridge. Both have the same IP address. Wouldn't at leats the loopback work? Or am I missing something?
  3. I have sent an email to them too. But maybe we should update the FAQ too
  4. Hi guys, Radarr would only work when the URL had the exact ip address of my unraid box, but it wouldn't if I set the URL as "localhost:9117(...)" or "127.0.0.1:9117(...)". Not sure why that is happening. Right now my URL is set to "http://10.0.7.15:9117/torznab/all/". Is there a difference between that and the URL you mentioned, i.e. "http://10.0.7.15:9117/api/v2.0/indexers/all/results/torznab/"?
  5. Hello guys, I was having an issue and managed to solve it, However I'm not sure if this is the right place to post it. I downloaded the OVPN files from PIA and copied all the necessary files and the supervisord.log kept showing there were no OVPN files... Took me too long to finally see that the OVPN file did not have the ".ovpn" extension. I simply had to edit the edit to add the extension and everything worked fine. Every one of the files was missing the ".ovpn" extension. I downloaded it again to verify and could confirm. I'm not sure if this is for some reason only happening with me.
  6. Thanks Bonienl! I was looking the changelogs and new features for 6.4 and it looks really nice. I will delete the assignments and do some backups before trying it out. Maybe editing the emby's xml would make the webui to be listened on port 80... I will try that now and report back. No success in editing the system.xml or even the emby's template xml... Have no idea where its the config that a container must use such port.
  7. Hi guys, I'm not sure if this is the right place to post this and since this is my first topic I apologize in advance for any mistakes. As the title says, I have been trying to run an Emby docker with it's own IP and its WebUI accessible via port 80. That way any user on the local network can access it by just typing the hostname instead of typing "hostname:8096" on the browser. I was able to configure it to have its own IP by creating a network with macvlan drivers called "embynet". But I'm having no success in enabling it to be accessible by port 80. docker network create -d macvlan --subnet=10.0.7.0/24 --ip-range=10.0.7.128/27 --gateway=10.0.7.1 -o parent=br0 embynet The docker run command I used (IIRC as I ran it a couple of months ago) was something like this: docker run -d --name=Emby-server --net=embynet --ip=10.0.7.154 -p 80:80 -p 443:443 -p 7359:7359/udp -p 1900:1900/udp -e TZ=America/Sao_Paulo -v "/mnt/user/Media/":"/mnt":rw -v "/mnt/user/appdata/EmbyServer":"/config":rw emby/embyserver I tried to run the command with the port variables in many different manners "-p 80:80 -p 443:443", "-p 10.0.7.154:80:80 -p 10.0.7.154:443:443" etc... and nothing worked. the Emby container was always listening on the same 8096 port. I also tried configuring the port inside the WebUI config with no success. I'm thinking about running the Embyserver on a windows server VM that I already have, or maybe try this again on unraid 6.4... I'm not sure what's the workaround for this... Do you guys have any clue or is there a different route to accomplish this? I do understand that making a container listen to port 80 would cause issues with unraid, but since the container has a different IP I don't see why I shouldn't do it...
  8. OMG! Thank you so much Saarg, I've been trying the whole day to passthrough my dual interface Intel NIC. Tried with and without the "pci-stub" and "vfio-pci" in the syslinux config. Also tried to pass just one of the interfaces.... Tried so many things until i stumbled upon your post with the link for the "vfio_iommu_type1.allow_unsafe_interrupts=1" command. This should be added to the OP's post, I think.