LoginSignup
8
12

More than 5 years have passed since last update.

Vagrant : バージョンを指定してboxを削除

Posted at

vagrant box updateなどをすると、バージョンだけが異なる同じboxが同時に存在することになる。

$ vagrant box list
bento/centos-7.4 (virtualbox, 201801.02.0)
bento/centos-7.4 (virtualbox, 201802.02.0)

上の例ではv201801.02.0が古いバージョンになるので、これを削除したいときには次のコマンドでできる。

$ vagrant box remove bento/centos-7.4 --box-version 201710.25.0

さらにプロバイダも指定したい場合は

$ vagrant box remove bento/centos-7.4 --box-version 201710.25.0 --provider virtualbox

のようにオプションを追加する。

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