diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-10-11 07:36:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 07:36:51 -0700 |
commit | 23c9816ba9ff1af3538dcb725d86fc565df53a30 (patch) | |
tree | a31f0ffbcc7e62c3c3a1a079d15d17c339bf134f /hack | |
parent | 71c2681310d1286d6ed465388373a3456944468b (diff) | |
parent | 1c0247ceb440ab6a946106af15ab6a87d228c14f (diff) | |
download | podman-23c9816ba9ff1af3538dcb725d86fc565df53a30.tar.gz podman-23c9816ba9ff1af3538dcb725d86fc565df53a30.tar.bz2 podman-23c9816ba9ff1af3538dcb725d86fc565df53a30.zip |
Merge pull request #1622 from baude/paprdind
Paprdind
Diffstat (limited to 'hack')
-rwxr-xr-x | hack/dind | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/hack/dind b/hack/dind deleted file mode 100755 index 3254f9dbe..000000000 --- a/hack/dind +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/env bash -set -e - -# DinD: a wrapper script which allows docker to be run inside a docker container. -# Original version by Jerome Petazzoni <jerome@docker.com> -# See the blog post: https://blog.docker.com/2013/09/docker-can-now-run-within-docker/ -# -# This script should be executed inside a docker container in privileged mode -# ('docker run --privileged', introduced in docker 0.6). - -# Usage: dind CMD [ARG...] - -# apparmor sucks and Docker needs to know that it's in a container (c) @tianon -export container=docker - -if [ -d /sys/kernel/security ] && ! mountpoint -q /sys/kernel/security; then - mount -t securityfs none /sys/kernel/security || { - echo >&2 'Could not mount /sys/kernel/security.' - echo >&2 'AppArmor detection and --privileged mode might break.' - } -fi - -# Mount /tmp (conditionally) -if ! mountpoint -q /tmp; then - mount -t tmpfs none /tmp -fi - -if [ $# -gt 0 ]; then - exec "$@" -fi - -echo >&2 'ERROR: No command specified.' -echo >&2 'You probably want to run hack/make.sh, or maybe a shell?' |