23 lines
496 B
Bash
Executable file
23 lines
496 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ -z $DETECTED_OS ]]; then
|
|
echo "cannot detect OS, please set DETECTED_OS manually"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ $DETECTED_OS =~ .*:.* ]]; then
|
|
DIR=`echo $DETECTED_OS | cut -d':' -f1`
|
|
else
|
|
echo "please set DETECTED_OS to system:version"
|
|
exit 1
|
|
fi
|
|
|
|
INSIDER_ROOT_DIR=/root/temp/dotfiles/
|
|
CURRENT_DIR=`pwd`
|
|
|
|
if [[ -d "$CURRENT_DIR/$DETECTED_OS" ]]; then
|
|
DIR=$DETECTED_OS
|
|
fi
|
|
|
|
docker run -v $CURRENT_DIR:$INSIDER_ROOT_DIR $DETECTED_OS $INSIDER_ROOT_DIR/$DIR/test_insider
|
|
|