this post was submitted on 25 Jul 2023
4 points (83.3% liked)

Docker

452 readers
9 users here now

founded 1 year ago
MODERATORS
 

Is it a bad idea to recursively change the permissions for the /var/lib/docker directory? That directory is owned by root:root and the permissions are rwx--x---.

I'm hoping to be able to access my named volumes without using sudo so that I can easily back them up.

top 4 comments
sorted by: hot top controversial new old
[–] mvirts 1 points 1 year ago

Only one way to find out :D

I mean in test, definitely in test not production I swear. I'm staying late working on unrelated projects.

[–] breadsmasher 1 points 1 year ago* (last edited 1 year ago) (1 children)

Why are your named volumes related to /var/lib/docker at all?

If you want to back up the data, you just need to access wherever the host directory is.

/some/home/directory:/container/directory

You only need access to that host directory and back that up?

[–] aseriesoftubes 1 points 1 year ago (1 children)

I think you’re thinking of bind mounts. Named volumes live in /var/lib/docker/volumes.

[–] breadsmasher 1 points 1 year ago

Gotcha - my mistake.

Something like this? https://stackoverflow.com/a/39125414