summaryrefslogtreecommitdiff
path: root/cmd/podman/exec.go
diff options
context:
space:
mode:
authorDebarshi Ray <rishi@fedoraproject.org>2019-01-08 12:53:50 +0100
committerDebarshi Ray <rishi@fedoraproject.org>2019-01-08 17:42:37 +0100
commit867669374c3fdd39f2629e53cbe7430f1bc3e085 (patch)
treeff744348a1f94cac55771eeb6e36d7ae47579ec7 /cmd/podman/exec.go
parent9474b8cea239348d11c913b03b9461afaf663f0b (diff)
downloadpodman-867669374c3fdd39f2629e53cbe7430f1bc3e085.tar.gz
podman-867669374c3fdd39f2629e53cbe7430f1bc3e085.tar.bz2
podman-867669374c3fdd39f2629e53cbe7430f1bc3e085.zip
Add a --workdir option to 'podman exec'
Signed-off-by: Debarshi Ray <rishi@fedoraproject.org>
Diffstat (limited to 'cmd/podman/exec.go')
-rw-r--r--cmd/podman/exec.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/exec.go b/cmd/podman/exec.go
index c03834dea..073e72e64 100644
--- a/cmd/podman/exec.go
+++ b/cmd/podman/exec.go
@@ -34,6 +34,7 @@ var (
Usage: "Sets the username or UID used and optionally the groupname or GID for the specified command",
},
LatestFlag,
+ WorkDirFlag,
}
execDescription = `
podman exec
@@ -108,5 +109,5 @@ func execCmd(c *cli.Context) error {
envs = append(envs, fmt.Sprintf("%s=%s", k, v))
}
- return ctr.Exec(c.Bool("tty"), c.Bool("privileged"), envs, cmd, c.String("user"))
+ return ctr.Exec(c.Bool("tty"), c.Bool("privileged"), envs, cmd, c.String("user"), c.String("workdir"))
}