diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2020-08-03 23:05:10 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2020-08-03 23:05:10 +0200 |
commit | 976e364a9741d10d99a71253bc69bfa8ef47a0f0 (patch) | |
tree | 7182545d271e2bebbf5659f184bd920462d5a51b /test/e2e/run_test.go | |
parent | 1709335cf04e947117d4ae4dca72f24f4095511b (diff) | |
download | podman-976e364a9741d10d99a71253bc69bfa8ef47a0f0.tar.gz podman-976e364a9741d10d99a71253bc69bfa8ef47a0f0.tar.bz2 podman-976e364a9741d10d99a71253bc69bfa8ef47a0f0.zip |
podman: support --mount type=devpts
Allow to create a devpts mount.
This is useful for containers that bind mount /dev/ from the host but
at the same time want to create a terminal.
It can be used as:
podman run -v /dev:/dev --mount type=devpts,target=/dev/pts ...
Closes: https://github.com/containers/podman/issues/6804
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'test/e2e/run_test.go')
-rw-r--r-- | test/e2e/run_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index 6bb12b54a..f2a6d14eb 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -811,6 +811,14 @@ USER mail` Expect(len(session.OutputToStringArray())).To(Equal(1)) }) + It("podman run --mount type=devpts,target=/foo/bar", func() { + SkipIfRootless() + session := podmanTest.Podman([]string{"run", "--mount", "type=devpts,target=/foo/bar", fedoraMinimal, "stat", "-f", "-c%T", "/foo/bar"}) + session.WaitWithDefaultTimeout() + Expect(session.ExitCode()).To(Equal(0)) + Expect(session.OutputToString()).To(ContainSubstring("devpts")) + }) + It("podman run --pod automatically", func() { session := podmanTest.Podman([]string{"run", "-d", "--pod", "new:foobar", ALPINE, "nc", "-l", "-p", "8080"}) session.WaitWithDefaultTimeout() |