-
-
Save gladiopeace/7277d4153e305c84c8fb39ca7d14e0ba to your computer and use it in GitHub Desktop.
docker
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
# tmp mysql | |
sudo docker run --name play_mysql -p 3310:3306 -v /home/ubuntu/mysql_data/play:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.7.17 | |
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
# compose status | |
alias docker-stats='docker-compose ps|grep ${PWD##*/}|awk '\''{printf("%s ",$1)}'\''|xargs docker stats' | |
# ip | |
function docker-ips() { | |
( | |
echo 'CONTAINER ID|IMAGE|COMMAND|CREATED|STATUS|IP|PORTS|NAMES'; | |
# truncating Id to 12 chars is docker ps default | |
# truncating StartedAt to 19 gives seconds resolution: "2016-11-15T12:57:56" | |
# space before `{{end}}` intentional, to separate if you have multiple networks with IP(?) | |
docker ps --quiet "$@" | xargs --no-run-if-empty docker inspect --format='{{printf "%.12s" .Id}}|{{.Config.Image}}|{{.Config.Cmd}}|{{printf "%.19s" .State.StartedAt}}|{{.State.Status}}|{{range $net, $conf := .NetworkSettings.Networks}}{{$net}}:{{$conf.IPAddress}} {{end}}|{{.NetworkSettings.Ports}}|{{.Name}}' | |
) | column -t -s '|' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment