mirror of
https://github.com/pyrohost/pyrodactyl.git
synced 2026-04-06 04:01:58 +02:00
update: fix vagrantfile for me specifically(Probably broke for others)
This commit is contained in:
13
Vagrantfile
vendored
13
Vagrantfile
vendored
@@ -14,12 +14,21 @@ Vagrant.configure("2") do |config|
|
||||
end
|
||||
# Libvirt provider
|
||||
config.vm.provider "libvirt" do |libvirt|
|
||||
libvirt.memory = 4096
|
||||
libvirt.memory = 8192
|
||||
libvirt.cpus = 4
|
||||
config.vm.network "public_network", dev: "bridge0"
|
||||
|
||||
end
|
||||
# setup the synced folder and provision the VM
|
||||
config.vm.synced_folder ".", "/var/www/pterodactyl"
|
||||
config.vm.synced_folder ".", "/var/www/pterodactyl",
|
||||
type: "nfs",
|
||||
nfs_version: 4
|
||||
|
||||
config.vm.provision "shell", path: "vagrant/provision.sh"
|
||||
|
||||
config.vm.hostname = "pyrodactyl-dev"
|
||||
|
||||
|
||||
config.vm.post_up_message = "Pterodactyl is up and running at http://localhost:3000. Login with username: dev@pyro.host, password: 'password'."
|
||||
|
||||
# allocated testing ports
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "pyrodactyl",
|
||||
"version": "3.0.0",
|
||||
"buildNumber": "300000",
|
||||
"version": "4.0.0-dev",
|
||||
"buildNumber": "30",
|
||||
"engines": {
|
||||
"node": ">=20.0"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user