stop docker machines

This commit is contained in:
James Walker 2016-01-16 15:17:31 -05:00
parent ac0317d05c
commit 2d8da47506

View File

@ -3,6 +3,9 @@
# shutdown vagrant boxes
for box in $(vagrant global-status|grep running|awk '{ print $1 }'); do vagrant halt $box; done
# shutdown docker machines
for machine in $(docker-machine ls -q); do docker-machine stop $machine; done
# kill tmux sessions
tmux kill-server