Brian.Unraid

Members
  • Posts

    5
  • Joined

  • Last visited

Brian.Unraid's Achievements

Noob

Noob (1/14)

1

Reputation

  1. Thanks, I've got it switched over to ipvlan. I'll see how that goes. Is there anything important to know about switching from Macvlan to ipvlan?
  2. I'm having an issue about 1 time per week where the server disconnects from the network and becomes unresponsive. The power does not cut off on the tower, everything stays on. The monitor I have connected to it shows a frozen/unresponsive GUI. After I power down and back up everything boots and works normally. It just crashed again on October 2, at 3:00 pm. I'm attaching my syslog file to this post. If anyone has any ideas on what I should do to try and troubleshoot the issue I would greatly appreciate it! My hardware: Unraid Version: 6.12.4 Motherboard - msi mag z690 tomahawk wifi ddr4 CPU - Intel i5 12600k PSU - 2 year old Seasonic FOCUS PX-850 No GPU syslog.log
  3. I'm using a container that monitors a folder for mp3 files and converts them into an m4b file. This project: https://github.com/seanap/auto-m4b I can't figure out how to set the owner or permissions on the m4b file that gets outputted. The files are coming out owned by nobody:nogroup and -rw-r--r-- Can anyone explain to me how I can set user, group, and permission for all the files outputted by a container? I've tried setting PUID, PGID, and UMASK in the yaml file. But I'm a total noob with docker-compose and .yml files. On a normal container template I get from the app store, it has PUID:99, PGID:100, UMASK:002, already setup correctly. Any help would be greatly appreciated!
  4. I'm using docker-compose for the first time and trying to setup this project: https://github.com/seanap/auto-m4b I've got it working mostly. The container finds my .mp3 files and converts them to an .m4b, but the new file it outputs has the wrong user, group, and permissions. I've tried editing the .yml file and putting PUID, PGID, and UMASK, under the environment section with no success. Here is my compose file: version: '3.7' services: auto-m4b: image: seanap/auto-m4b container_name: auto-m4b volumes: - /mnt/user/appdata/auto-m4b:/config - /mnt/user/data/torrents/audiobooks_temp:/temp environment: - PUID=99 - PGID=100 - UMASK=002 - CPU_CORES=2 - SLEEPTIME=1m I don't have anything configured on the .env file. Any help would be greatly appreciated. I feel like it's probably something simple I'm missing. If this is the wrong place to ask for help with docker-compose, I apologize, please point me in the right direction. Thank you!
  5. I'm having the exact same issue but I'm not understanding what the solution is that you're talking about. How do I add the wireguard network to the Local tunnel network pool? Under VPN Manager, I can see Local tunnel network pool, but I can only add like 5 characters to that field. Could you explain in a little more detail? I'd really appreciate it