forked from pterodactyl-installer/pterodactyl-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagrantfile
38 lines (30 loc) · 922 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# "public" network so that we can access the panel interface
config.vm.network "public_network"
# ubuntu
config.vm.define "ubuntu_focal" do |ubuntu_focal|
ubuntu_focal.vm.box = "ubuntu/focal64"
end
config.vm.define "ubuntu_bionic" do |ubuntu_bionic|
ubuntu_bionic.vm.box = "ubuntu/bionic64"
end
# debian
config.vm.define "debian_bullseye" do |debian_bullseye|
debian_bullseye.vm.box = "debian/bullseye64"
end
config.vm.define "debian_buster" do |debian_buster|
debian_buster.vm.box = "debian/buster64"
end
config.vm.define "debian_stretch" do |debian_stretch|
debian_stretch.vm.box = "debian/stretch64"
end
# (centos)
config.vm.define "centos_7" do |centos_7|
centos_7.vm.box = "centos/7"
end
config.vm.define "centos_8" do |centos_8|
centos_8.vm.box = "centos/8"
end
end