jon77p

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by jon77p

  1. Yep! Yeah, I tried with just running it as privileged and that did not work for me. Using the XML change AND running as privileged is currently working (definitely agree that having it be privileged is a terrible, but temporary fix!)
  2. Like others have posted, I also ran into the same issues with java in the latest docker image (binhex/arch-mineos-node:5670b46c4f22e806ce5819a7f86042df4b4ecc23-04). I also tried setting the container to have privileged mode but still had the same issue as well (see spoiler). After reading through the issues referenced in itzg/docker-minecraft-server issue 795, I found that the developer ended up currently resolving the issues by adding the :Z flag to the volume mount for docker. Changing the mount flag to be rw,Z with the container in privileged mode fixed the issue. Why? I have no idea, but it works reliably for now! I think the Z mount flag is related to something with AppArmor, so that may be related within parts of the image? To change the mount flag, you need to edit the configuration file generated on the flash storage device for Unraid (the webUI does not support these additional docker flags). I found help from this forum post, but basically just edit /boot/config/plugins/dockerMan/templates-user/my-binhex-mineos-node.xml and change the Mode XML value within the Volume section to be rw,Z instead of rw. It should look something like this: Hopefully this helps for troubleshooting the root issue for the image! Setting privileged mode to make this work shouldn't really be necessary, since the container will be less secure than normal with greater permissions to the host OS.