Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

Need help installing backblaze-personal-wine docker on my DS1821+

#3
(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.  cookie clicker unblocked 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?

Thanks in advance!

The error "wine: /wine is not owned by you" means the Docker container's user (usually root) doesn't match your host user ID.  The solution: run the container with `--user $(id -u):$(id -g)` to specify your host user ID and group ID.  For example: `docker run -it --user $(id -u):$(id -g) -v /your/data/directory:/wine <image_name>`. This gives the container your host user ID and mounts your data directory to `/wine` inside the container, fixing the permission issue. Replace `<image_name>` and `/your/data/directory` with your actual values. This is safer than changing permissions inside the container.
Reply


Messages In This Thread
RE: Need help installing backblaze-personal-wine docker on my DS1821+ - by nivance - 01-25-2025, 09:36 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)