Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save genakim/7193aab5d449a47103aa645b7c4ab0a1 to your computer and use it in GitHub Desktop.
Save genakim/7193aab5d449a47103aa645b7c4ab0a1 to your computer and use it in GitHub Desktop.
how to download vagrant boxes manually

Download Vagrant boxes manually

In this example, we're going to download the Midnight Sun box.

# The box URL is https://app.vagrantup.com/uwmidsun/boxes/box/versions/2.1.0
# In general, we just take the box URL, and then append the provider URL
# https://app.vagrantup.com/<organization name>/boxes/<box name>/versions/<version>/providers/<provider>.box
wget https://app.vagrantup.com/uwmidsun/boxes/box/versions/2.1.0/providers/virtualbox.box -O box-2.1.0.box

# Then you can add it to Vagrant
vagrant box add uwmidsun/box box-2.1.0.box
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment