dockerd-rootless.sh: support containerd v1.4 shim socket path convention
The new shim socket path convention hardcodes `/run/containerd`: https://github.com/containerd/containerd/pull/4343 `dockerd-rootless.sh` is updated to hide the rootful `/run/containerd` from the mount namespace of the rootless dockerd. Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
This commit is contained in:
parent
13a56fee4e
commit
794aa20983
1 changed files with 1 additions and 1 deletions
|
@ -94,6 +94,6 @@ else
|
|||
[ $_DOCKERD_ROOTLESS_CHILD = 1 ]
|
||||
# remove the symlinks for the existing files in the parent namespace if any,
|
||||
# so that we can create our own files in our mount namespace.
|
||||
rm -f /run/docker /run/xtables.lock
|
||||
rm -f /run/docker /run/containerd /run/xtables.lock
|
||||
exec dockerd $@
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue