thmhoag / arkserver

Docker image for a dedicated ARK Server with ArkManager.
MIT License
121 stars 43 forks source link

run.sh is too slow due to chown inherently taking a long time. #26

Closed michaeldelago closed 3 years ago

michaeldelago commented 3 years ago

Image Setup Details

Description of Issue

the run.sh file uses sudo chown steam:steam -R /ark, which is slow.

It should use `find -not -user steam -not -group steam -exec chown steam:steam -v {} \;

Additional Information

To be fair, I am mounting the /ark directory over NFS.

thmhoag commented 3 years ago

Merged and should now be included in the :1.6.0 tag of the image. Thanks!