LoginSignup
0
1

More than 3 years have passed since last update.

macOSでDockerコマンドの入力補完を有効化する手順

Last updated at Posted at 2019-08-19

1. bash-completionをインストールする

bash
$ brew install bash-completion

2. .bashrc.bash_profileに以下の内容を追加する

.bashrc
if [ -f `brew --prefix`/etc/bash_completion ]; then
    . `brew --prefix`/etc/bash_completion
fi
.bash_profile
if [ -f ~/.bashrc ]; then
    . ~/.bashrc
fi

3. Dockerのシンボリックリンクを追加する

bash
$ ln -s /Applications/Docker.app/Contents/Resources/etc/docker.bash-completion /usr/local/etc/bash_completion.d/docker
$ ln -s /Applications/Docker.app/Contents/Resources/etc/docker-machine.bash-completion /usr/local/etc/bash_completion.d/docker-machine
$ ln -s /Applications/Docker.app/Contents/Resources/etc/docker-compose.bash-completion /usr/local/etc/bash_completion.d/docker-compose

参考文献

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1