Created
January 28, 2022 04:43
-
-
Save smhr/84e1119198fa634a678b5f439da1847c to your computer and use it in GitHub Desktop.
SKA_training vagrant
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#============= some useful links: | |
# From official site: | |
https://learn.hashicorp.com/tutorials/vagrant/getting-started-boxes?in=vagrant/getting-started | |
# Oracle guide | |
https://oracle-base.com/articles/vm/vagrant-a-beginners-guide | |
# Download vbox file: | |
wget -c https://app.vagrantup.com/ska-training/boxes/containers/versions/1.0.0/providers/virtualbox.box | |
# Download and add the box: | |
vagrant box add ./virtualbox.box --name ska-training/containers | |
vagrant box list | |
# Deploy: | |
mkdir ska-training && cd ska-training | |
vagrant init ska-training/containers | |
vagrant up | |
vagrant ssh | |
# Once the command prompt gives you back control, check the VirtualBox interface. | |
# You will see a new VM there which includes the directory name. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment