Moving the UDS file out of /var/lib/docker and into /run/
the UDS sock is an unique file and the lifetime of it is until the docker daemon dies (gracefully). Hence there is no need for it to be under /var/lib and not mandatory to be configurable either. Signed-off-by: Madhu Venugopal <madhu@docker.com>
This commit is contained in:
parent
cc69d2452c
commit
32e08e7700
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ import (
|
|||
"github.com/opencontainers/runc/libcontainer/configs"
|
||||
)
|
||||
|
||||
const udsBase = "/var/lib/docker/network/files/"
|
||||
const udsBase = "/run/docker/libnetwork/"
|
||||
const success = "success"
|
||||
|
||||
// processSetKeyReexec is a private function that must be called only on an reexec path
|
||||
|
|
Loading…
Reference in a new issue