Created
April 11, 2017 03:57
-
-
Save mckelvin/007a94a743a33169eff510da12fdc78b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# credits: https://github.com/kubernetes/kubernetes/issues/13585#issuecomment-215615891 | |
if [ $# -eq 0 ]; then | |
echo "Usage: dshell <container>" | |
exit 1 | |
fi | |
COLUMNS=`tput cols` | |
LINES=`tput lines` | |
TERM=xterm | |
docker exec -i -t -e COLUMNS=$COLUMNS -e LINES=$LINES -e TERM=$TERM $@ bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment