viernes, 6 de diciembre de 2019

Making "docker run ... bash" Remember

Here's a small docker+shell hack I've never seen around and feel it makes a difference if you're getting in and out different (but related) containers. Very hackish, but works surprisingly well! Don't try it at home or rely on anything from it for other tools, as it doesn't compose very well, but hey... it's free :)

DOCKER_ORIG=$(which docker)
DOCKER_BASH_HIST=$HOME/.docker_bash_history
touch $DOCKER_BASH_HIST
docker () {
if [[ $1 == "run" ]]; then
shift
$DOCKER_ORIG run -v $DOCKER_BASH_HIST:/root/.bash_history "$@"
else
$DOCKER_ORIG "$@"
fi
}
view raw .zshrc.sh hosted with ❤ by GitHub
It's shell monkeypatching, and some kind of command parsing that looks like tcl/lisp-y list munging. Enjoy!

No hay comentarios: