Created
August 17, 2018 10:20
-
-
Save blueberrystream/69ffe7bb685273de447e783d03c66316 to your computer and use it in GitHub Desktop.
This file contains 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 | |
# require peco (https://github.com/peco/peco) | |
# usage: doc-sh [SHELL] | |
id=`docker container ls | peco | awk '{print $1}'` | |
[[ -z "$id" ]] && exit | |
shell=$1 | |
[[ -z "$shell" ]] && shell=bash | |
docker container exec -it $id $shell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment