05-08-2025, 02:54 AM
(07-30-2023, 09:13 PM)Davel23 Wrote: I'm trying to set up the backblaze-personal-wine docker as outlined in the NAS Compares article on the subject. (I tried to post the link here but I'm told I can't post URLs.)
I'm able to pull and start the container, but the Backblaze client doesn't seem to install. Looking at the log there are several instances of "wine: /wine is not owned by you". I assume this is preventing the container from creating needed folder structures but I am not super familiar with Docker and I don't know how to resolve this. Can anyone help? Snow Rider 3D
Thanks in advance!
To resolve the "wine: /wine is not owned by you" issue in your Docker container:
Change Ownership: Run this command on the host:
Copy
sudo chown -R $(id -u):$(id -g) /path/to/your/wine/directory
Run with Correct User: Start the container with:
Copy
docker run --user $(id -u):$(id -g) -v /path/to/your/wine/directory:/wine backblaze-personal-wine
Check Logs: Use docker logs <container_id> to see more details.
If issues persist, consult the NAS Compares article or community forums for additional help.