8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

macOS High Sierra + zsh でDocker構築で、ハマったところ

Posted at

「Docker for Mac」でDockerをダウンロードし、
https://docs.docker.com/docker-for-mac/install/#download-docker-for-mac
その手順どおりに環境構築したところ、
どうも動かない...
で、ちょっとハマったので、その対応方法を記載します。

OS : macOS High Sierra
terminal : zsh

まずは、上記のリンクから、記載通りに、Dockerをダウンロードし、macにインストールします。
(私は、stableを選びました)

https://docs.docker.com/get-started/#prepare-your-docker-environment
で、上記リンクに従い、手はず通り、
docker --version
を実行すると、

zsh: command not found: docker

って、なりました。

多分パスが通ってないんだろうなーと思いつつ、
あれ、dockerってどこあるん?
と思ったので、調査してみると、
/usr/local/bin
に、dockerのシンボリックリンクがおいてありました。
(後、docker-composeとかも)

で、パスを見てみる。

echo $PATH
/usr/bin:/bin:/usr/sbin:/sbin

じゃあ、パス追加すんぺ
ということで、
.zshenvに下記を追加

export PATH="$PATH:/usr/local/bin"

無事、解決!

8
8
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
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?