"~/.docker" folder is owned by root user & group #180
Labels
bug
Something isn't working
enhancement
New feature or request
help wanted
Extra attention is needed
BurmillaOS Version: (ros os version) v2.0.1 release
Where are you running BurmillaOS? (docker-machine, AWS, GCE, baremetal, etc.) Proxmox 8.1.4
Which processor architecture you are using? x86
Do you use some extra hardware? (GPU, etc)? No
Which console you use (default, ubuntu, centos, etc..) Default
Do you use some service(s) which are not enabled by default? Docker compose
Have you installed some extra tools to console? No
Do you use some other customizations? No
Please share copy of your cloud-init (remember remove all sensitive data first) Not applicable
On a fresh install, it looks like the
~/.docker
folder is owned byroot:root
. This caused a failed image build for me withdocker compose
, as the build attempts to create build files inside this folder via the rancher user.Running
sudo chown "$USER":"$USER" /home/"$USER"/.docker -R
fixes the issue.Perhaps it would be best to assign the folder to the
docker
group, the same way as the docker socket is already.The text was updated successfully, but these errors were encountered: