Open yw662 opened 6 years ago
and the toml file, if you really want to know. It is just the default one (at least for ubuntu 18.04).
root = "/var/lib/docker/containerd/daemon"
state = "/var/run/docker/containerd/daemon"
oom_score = -500
[grpc]
address = "/var/run/docker/containerd/docker-containerd.sock"
uid = 0
gid = 0
max_recv_message_size = 16777216
max_send_message_size = 16777216
[debug]
address = "/var/run/docker/containerd/docker-containerd-debug.sock"
uid = 0
gid = 0
level = "info"
[metrics]
address = ""
grpc_histogram = false
[cgroup]
path = ""
[plugins]
[plugins.linux]
shim = "docker-containerd-shim"
runtime = "docker-runc"
runtime_root = "/var/lib/docker/runc"
no_shim = false
shim_debug = false
Expected behavior
docker-containerd should not listen to any ports externally. It should be 127.0.0.1 by default, which might be configured to sth. else.
Actual behavior
docker-containerd listen to tcp port <external ip address>:10010. And, surprisingly it is not 127.0.0.1:10010 or 0.0.0.0:10010.
Steps to reproduce the behavior
Just start docker daemon, and
ss -tnlp
, orss -tnlp|grep 10010
.Output of
docker version
:Output of
docker info
:Additional environment details (AWS, VirtualBox, physical, etc.)
not relevant.