This file contains hidden or 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
| #!/usr/bin/env zsh | |
| function dkr-env-clear() { | |
| export DOCKER_TLS_VERIFY="" | |
| export DOCKER_HOST="" | |
| export DOCKER_CERT_PATH="" | |
| export DOCKER_MACHINE_NAME="" | |
| } | |
| function dkr-env() { dkr-env-remote $* } |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| dkr-env-clear() { | |
| export DOCKER_TLS_VERIFY="" | |
| export DOCKER_HOST="" | |
| export DOCKER_CERT_PATH="" | |
| export DOCKER_MACHINE_NAME="" | |
| } | |
| dkr-env() { dkr-env-remote $* } |