Remove unnecessary --interactive flag

Per @achanda, this was added [accidentally](b92546a9c5 (commitcomment-16750062)).
This commit is contained in:
Brian Lalor 2016-03-17 13:22:49 -04:00
parent 4bc865e47f
commit efe080b53f
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ func (d *RktDriver) Start(ctx *ExecContext, task *structs.Task) (DriverHandle, e
insecure = true
}
cmdArgs = append(cmdArgs, "run", "--interactive")
cmdArgs = append(cmdArgs, "run")
cmdArgs = append(cmdArgs, fmt.Sprintf("--volume=%s,kind=host,source=%s", task.Name, ctx.AllocDir.SharedDir))
cmdArgs = append(cmdArgs, fmt.Sprintf("--mount=volume=%s,target=%s", task.Name, ctx.AllocDir.SharedDir))
cmdArgs = append(cmdArgs, img)