9 lines
191 B
Bash
Executable File
9 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
# vi: set tabstop=4 shiftwidth=4 expandtab :
|
|
ROOTDIR=$(cd "$(dirname "$0")" && pwd)
|
|
cd $ROOTDIR
|
|
. ./env.sh
|
|
|
|
echo "Enter shell in $NAME container..."
|
|
docker exec -it $DKRNAME bash
|