https://bugzilla.redhat.com/show_bug.cgi?id=1149882
Eric Paris <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from Eric Paris <[email protected]> --- A little bit of systemd knowledge was dropped on my and I have this working now. I'll try to get patches everywhere tomorrow. Below look good? Socket activation works. Service enablement works. Deleting the /var/run/docker.sock is fine the next time you restart the docker.socket or start the docker.service. But for now, sleep. # systemctl stop docker.service # rm /var/run/docker.sock rm: remove socket ‘/var/run/docker.sock’? y # docker ps 2014/10/06 22:34:23 Get http:///var/run/docker.sock/v1.14/containers/json: dial unix /var/run/docker.sock: no such file or directory # systemctl start docker.service # docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES # systemctl stop docker.service # systemctl start docker.socket # ps -ef | grep docker root 4618 3922 0 22:34 pts/0 00:00:00 grep --color=auto docker # docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES # ps -ef | grep docker root 4626 1 0 22:35 ? 00:00:00 /usr/bin/docker -d -H fd:// --selinux-enabled root 4692 3922 0 22:35 pts/0 00:00:00 grep --color=auto docker -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ golang mailing list [email protected] https://lists.fedoraproject.org/mailman/listinfo/golang
