diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-10-17 13:52:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-17 13:52:57 -0400 |
commit | 19c150bef12ff08abc8249cc21275266a7ac74a3 (patch) | |
tree | 694d9d061ad89a641ca78ec9d8a59fe7ae712ea3 | |
parent | 2d14ba9e6fb2a53b9bc30c241303ba5d8d4e8926 (diff) | |
parent | 854eb5c54163c14bc2d1f475f1d85a96c31e2f6e (diff) | |
download | podman-19c150bef12ff08abc8249cc21275266a7ac74a3.tar.gz podman-19c150bef12ff08abc8249cc21275266a7ac74a3.tar.bz2 podman-19c150bef12ff08abc8249cc21275266a7ac74a3.zip |
Merge pull request #1672 from rhatdan/podman
Fix podman in podman
-rw-r--r-- | .papr_prepare.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.papr_prepare.sh b/.papr_prepare.sh index e0657dcd2..b15884478 100644 --- a/.papr_prepare.sh +++ b/.papr_prepare.sh @@ -14,4 +14,4 @@ fi ${CONTAINER_RUNTIME} build -t ${IMAGE} -f Dockerfile.${DIST} . 2>build.log # Run the tests -${CONTAINER_RUNTIME} run --rm --privileged --net=host -v $PWD:/go/src/github.com/containers/libpod:Z --workdir /go/src/github.com/containers/libpod -e CGROUP_MANAGER=cgroupfs -e PYTHON=$PYTHON -e STORAGE_OPTIONS="--storage-driver=vfs" -e CRIO_ROOT="/go/src/github.com/containers/libpod" -e PODMAN_BINARY="/usr/bin/podman" -e CONMON_BINARY="/usr/libexec/podman/conmon" -e DIST=$DIST -e CONTAINER_RUNTIME=$CONTAINER_RUNTIME $IMAGE sh ./.papr.sh -b -i -t +${CONTAINER_RUNTIME} run --rm --cap-add all --security-opt seccomp:unconfined --security-opt label:disabled --net=host -v $PWD:/go/src/github.com/containers/libpod:Z --workdir /go/src/github.com/containers/libpod -e CGROUP_MANAGER=cgroupfs -e PYTHON=$PYTHON -e STORAGE_OPTIONS="--storage-driver=vfs" -e CRIO_ROOT="/go/src/github.com/containers/libpod" -e PODMAN_BINARY="/usr/bin/podman" -e CONMON_BINARY="/usr/libexec/podman/conmon" -e DIST=$DIST -e CONTAINER_RUNTIME=$CONTAINER_RUNTIME $IMAGE sh ./.papr.sh -b -i -t |