the yum install for docker sets up everything to be owned by root.<br />
<br />
/var/run/docker.sock is owned by root:root<br />
<br />
i need to change this so I setup my own docker.socket<br />
<br />
[Unit]<br />
Description=Docker Socket for the API<br />
PartOf=docker.service<br />
<br />
[Socket]<br />
ListenStream=/var/run/docker.sock<br />
SocketMode=0660<br />
SocketUser=root<br />
SocketGroup=docker<br />
<br />
[Install]<br />
WantedBy=sockets.target<br />
<br />
the issues is that "Group/SocketGroup" does not change the group of the socket file root remains the owner of /var/run/docker.sock<br />
<br />
i have tried putting the file i /tmp/docker.sock<br />
<br />
same result
↧