Merge pull request #693 from tonistiigi/containerd-debug-sock

testutil: use different containerd debug sock
docker-18.09 v0.3.1
Akihiro Suda 2018-10-17 12:57:35 +09:00 committed by GitHub
commit 867bcd343f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -96,11 +96,12 @@ disabled_plugins = ["cri"]
[debug]
level = "debug"
address = %q
[plugins]
[plugins.linux]
shim = %q
`, filepath.Join(tmpdir, "root"), filepath.Join(tmpdir, "state"), address, c.containerdShim)
`, filepath.Join(tmpdir, "root"), filepath.Join(tmpdir, "state"), address, filepath.Join(tmpdir, "debug.sock"), c.containerdShim)
configFile := filepath.Join(tmpdir, "config.toml")
if err := ioutil.WriteFile(configFile, []byte(config), 0644); err != nil {
return nil, nil, err