Solutions
-
Tom7320's post in Backup und (bare metal) restore on Unraid 7.3.x was marked as the answerOk. I think it should be enough to keep my old backup script for the new setup:
mkdir -p /mnt/backup if mount UUID=6A09-DB37 /mnt/backup; then echo "Backup Unraid..." /usr/local/emhttp/webGui/scripts/flash_backup echo echo "Move to destination..." mv /unraid-*-boot-backup-*.zip /mnt/backup echo "Cleanup..." find /mnt/backup/ -name "unraid-*-boot-backup-*.zip" -type f -mtime +30 -delete find /usr/local/emhttp -maxdepth 1 -name "unraid-*-boot-backup-*.zip" -delete umount /mnt/backup else echo "Error: no backup device found..." fiBare metal recovery is done by creating a bootable usb flash drive with the USB creator and the backup zip file.
-
Tom7320's post in [Languagetool] No root privileges was marked as the answerMeanwhile, I simply use Unraid as the LT Server URL: http://unraid.funny-name.ts.net:8123/v2
Another way would be to use Tailscale Services:
With Tailscale Services you just do a simple
# tailscale serve --service=svc:languagetool --https=443 127.0.0.1:8123
on your Unraid server. Then your LT Server URL would be https://languagetool.funny-name.ts.net/v2
Personally I quit using the build in Unraid Docker integration completely. Tailscale Services is much more reliable and so much simpler to work with...