23 lines
376 B
Bash
Executable File
23 lines
376 B
Bash
Executable File
#!/bin/sh
|
|
|
|
base_path="~/projects/system/dev-env/scripts/"
|
|
mount_path=$(pwd)
|
|
if [[ -n "$2" ]]; then
|
|
name=$2
|
|
else
|
|
name=$(pwd | rev | cut -d "/" -f 1 | rev)
|
|
fi
|
|
|
|
echo "
|
|
janishutz dev containers
|
|
|
|
-> Creating container $name <-
|
|
"
|
|
|
|
if $1 == "rm"; then
|
|
docker stop $name
|
|
docker container rm $name
|
|
else
|
|
eval "${base_path}/$1-container $name $mount_path"
|
|
fi
|