Started modifying for nas
This commit is contained in:
parent
18ae3aaf4e
commit
9f77e30161
6 changed files with 68 additions and 62 deletions
17
Vagrantfile
vendored
Normal file
17
Vagrantfile
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = "generic/debian11"
|
||||
|
||||
# Use the standard insecure SSH key
|
||||
config.ssh.insert_key = false
|
||||
|
||||
# Don't mount the current directory in the VM
|
||||
config.vm.synced_folder ".", "/vagrant", disabled: true
|
||||
|
||||
config.vm.define "alpha" do |n|
|
||||
n.vm.hostname = "alpha.test"
|
||||
n.vm.network :private_network, ip: "192.168.56.5"
|
||||
end
|
||||
end
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue