nutools/lib/bashrc.d/docker_aliases.shared

14 lines
352 B
Bash

# -*- 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
if [ -n "$NUTOOLS_BASH_COMPLETION" ]; then
complete -F _docker_machine dm
fi
fi