Skip to content
Snippets Groups Projects
Unverified Commit b0cb2fd6 authored by Nick Jones's avatar Nick Jones
Browse files

Specify Vagrant box version

Add a line which states the version of the Vagrant box to be used when
provisioning a development environment.

NB: In this case, 0.2.0 is an image based on CentOS 7.5

Change-Id: I81613df1d20dfd1b99a5d7624fc1627ca185dd7f
Story: 2002086
Task: 19755
parent 4ffdd834
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,7 @@ Vagrant.configure('2') do |config| ...@@ -7,6 +7,7 @@ Vagrant.configure('2') do |config|
config.vm.network 'private_network', ip: '192.168.33.3', auto_config: false config.vm.network 'private_network', ip: '192.168.33.3', auto_config: false
config.vm.box = 'stackhpc/centos-7' config.vm.box = 'stackhpc/centos-7'
config.vm.box_version = '0.2.0'
config.vm.provider 'virtualbox' do |vb| config.vm.provider 'virtualbox' do |vb|
vb.memory = '4096' vb.memory = '4096'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment