1
0

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 3 years have passed since last update.

docker-machineコマンド導入

Last updated at Posted at 2020-11-25

はじめに

UdemyにてDockerの学習をしていてDockerをインストールしただけではdocker-machineコマンドが使えなかったので、導入の方法を記載しておこうと思います。
以前のDockerでは同時にインストールされていたようですが、別途インストールが必要になったようです。

環境

・Mac OS
・Docker install済

導入

以下のコードをターミナルで実行することでdocker-machineコマンドが使用することが可能になる。

$ base=https://github.com/docker/machine/releases/download/v0.16.0 &&
  curl -L $base/docker-machine-$(uname -s)-$(uname -m) >/usr/local/bin/docker-machine &&
  chmod +x /usr/local/bin/docker-machine

参考元
https://docs.docker.com/machine/install-machine/

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?