Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes #16: lock drupal-vm box to a tested version #17

Merged
merged 1 commit into from
Sep 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Vagrantfile.local
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@ if Vagrant::Util::Platform.wsl? || (Vagrant::Util::Platform.windows? && !Vagrant
config.vm.synced_folders[path][:mount_options] = ['dmode=775','fmode=764']
end
end

if vconfig['vagrant_box_version']
config.vm.box_version = vconfig['vagrant_box_version']
end
3 changes: 3 additions & 0 deletions config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
# vagrant.config.yml. That way when Drupal VM updates are brought in, this file
# can be overriden without manual inspection.

vagrant_box: geerlingguy/drupal-vm
vagrant_box_version: 2.0.9

# Use DHCP assigned IPs with vagrant-hostmanager
# Note: requires vagrant-vbguest to be disabled in Vagrantfile.local
vagrant_ip: dhcp
Expand Down