2021-02-08 16:36:28 +00:00

14 lines
207 B
Bash
Executable File

#!/bin/bash
if [ -z "$1" ]
then
echo
echo "No Docker Image supplied. Using archlinux"
echo
image='archlinux'
else
image=$1
fi
docker run -it -v "$(pwd):/mnt" -w '/mnt' $image