mirror of https://github.com/docker/docs.git
commit
2176ab0c9c
|
@ -503,6 +503,21 @@ ln -s $etc/docker-machine.bash-completion $(brew --prefix)/etc/bash_completion.d
|
||||||
ln -s $etc/docker-compose.bash-completion $(brew --prefix)/etc/bash_completion.d/docker-compose
|
ln -s $etc/docker-compose.bash-completion $(brew --prefix)/etc/bash_completion.d/docker-compose
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Add the following to your `~/.bash_profile`:
|
||||||
|
|
||||||
|
|
||||||
|
```shell
|
||||||
|
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion
|
||||||
|
```
|
||||||
|
|
||||||
|
OR
|
||||||
|
|
||||||
|
```shell
|
||||||
|
if [ -f $(brew --prefix)/etc/bash_completion ]; then
|
||||||
|
. $(brew --prefix)/etc/bash_completion
|
||||||
|
fi
|
||||||
|
```
|
||||||
|
|
||||||
### Zsh
|
### Zsh
|
||||||
|
|
||||||
In Zsh, the [completion
|
In Zsh, the [completion
|
||||||
|
|
Loading…
Reference in New Issue