-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathVagrantfile
More file actions
24 lines (20 loc) · 829 Bytes
/
Vagrantfile
File metadata and controls
24 lines (20 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Vagrant.configure("2") do |config|
# ------------------------------------------------
# NOTE: Comment out OSes you don't want to create
# ------------------------------------------------
config.vm.define "ubuntu20" do |server|
server.vm.box = "ubuntu/focal64"
server.vm.hostname = "ubuntu20"
server.vm.network "private_network", ip: "192.168.56.30"
end
# config.vm.define "centos8" do |server|
# server.vm.box = "centos/8"
# server.vm.hostname = "centos8"
# server.vm.network "private_network", ip: "192.168.56.31"
# end
# config.vm.define "centos7" do |server|
# server.vm.box = "centos/7"
# server.vm.hostname = "centos7"
# server.vm.network "private_network", ip: "192.168.56.32"
# end
end