nutools/lib/bashrc.d/docker_aliases.shared

14 lines
351 B
Plaintext
Raw Normal View History

2019-08-21 09:57:08 +04:00
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
if [ -n "$UTOOLS_DOCKER_ALIASES" ]; then
if [ "$DOCKER_MACHINE_WRAPPED" == true ]; then
alias dm=__docker_machine_wrapper
else
alias dm=docker-machine
fi
2019-08-21 11:20:21 +04:00
if [ -n "$UTOOLS_BASH_COMPLETION" ]; then
2019-08-21 09:57:08 +04:00
complete -F _docker_machine dm
fi
fi