From 9dd49bb73361f8b831326b85c1afc2e7e713cba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Fri, 30 Dec 2016 18:05:54 +0000 Subject: [PATCH] Added a 'runjessie' tool to run commands inside a jessie container --- tools/runjessie | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 tools/runjessie diff --git a/tools/runjessie b/tools/runjessie new file mode 100755 index 00000000..f2591409 --- /dev/null +++ b/tools/runjessie @@ -0,0 +1,17 @@ +#!/bin/bash +MOUNT_PATH="/tmp/data" +CURRENT_DIRECTORY=`pwd -P` # untangle symbolic links if needed +USERNAME=`whoami` +IMAGE="debian:jessie" + +if [[ -z $1 ]]; then + echo "usage: `basename $0` command_to_run_inside_a_container" + exit 1 +fi + +RESOLVED_ARGUMENTS="$@" +docker run -i -t -v "$CURRENT_DIRECTORY":"$MOUNT_PATH":Z $IMAGE bash -c "useradd -M -d $MOUNT_PATH $USERNAME 2>&1 > /dev/null && bash -c '$RESOLVED_ARGUMENTS'" + +# restore SELinux context for the current directory +restorecon -R "$CURRENT_DIRECTORY" +