Skip to content

Commit 072ac32

Browse files
authored
Corrected Docker(shim) UNIX domain socket file
This page listed `/var/run/docker.sock` as the UNIX domain socket path for the Docker container runtime, but it's actually `/var/run/dockershim.sock`, as the kubelet documentation indicates as the default value for the `--container-runtime-endpoint` argument: https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/ The socket file specified (`/var/run/docker.sock`) is where the Docker daemon listens for requests for the Docker API, not the CRI interface.
1 parent 37a379a commit 072ac32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en/docs/setup/production-environment/tools/kubeadm/install-kubeadm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The following table lists container runtimes and their associated socket paths:
122122
{{< table caption = "Container runtimes and their socket paths" >}}
123123
| Runtime | Path to Unix domain socket |
124124
|------------|-----------------------------------|
125-
| Docker | `/var/run/docker.sock` |
125+
| Docker | `/var/run/dockershim.sock` |
126126
| containerd | `/run/containerd/containerd.sock` |
127127
| CRI-O | `/var/run/crio/crio.sock` |
128128
{{< /table >}}

0 commit comments

Comments
 (0)