3
1

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に関して(インストール)

Posted at

#Docker-machineに関して

備忘録として書きます。
今回は簡易的です。

本日、docker-machine --versionとターミナルに入力して
versionを確認しようとしたら

$ docker-machine version

failed MSpanList_Insert 0x2707000 0x2e039a1c174 0x0 0x0
fatal error: MSpanList_Insert

runtime stack:
runtime.throw(0x16e41e0, 0x10)
	/usr/local/go/src/runtime/panic.go:530 +0x90 fp=0x7ffeefbff3e0 sp=0x7ffeefbff3c8
runtime.(*mSpanList).insert(0x22a0ca8, 0x2707000)
....
(この下にもっとありましたが、省略)

上記エラーが出て、数時間謎のまま。。。

ですが、https://blog.fkoji.com/2020/01231607.html
を参考にして解決しました。

どうやら、バージョン 2.2.0.0 から Docker Machine は Docker Desktop に含まれなくなった
との記載があったので、書いてある通りに

$ rm /usr/local/bin/docker-machine
$ curl -L https://github.com/docker/machine/releases/download/v0.16.2/docker-machine-`uname -s`-`uname -m` >/usr/local/bin/docker-machine && \
  chmod +x /usr/local/bin/docker-machine

を実行したところ、docker-machineのversionが確認できました。

$ docker-machine version
docker-machine version 0.16.2, build bd45ab13

参考文献(参考記事)

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?