Merge pull request #1664 from qingyunha/issue1607

move the fifo locations /run/containerd
This commit is contained in:
Phil Estes
2017-10-20 16:40:51 +02:00
committed by GitHub

View File

@@ -16,7 +16,7 @@ import (
// NewFifos returns a new set of fifos for the task
func NewFifos(id string) (*FIFOSet, error) {
root := filepath.Join(os.TempDir(), "containerd")
root := "/run/containerd/fifo"
if err := os.MkdirAll(root, 0700); err != nil {
return nil, err
}