Skip to content

Commit

Permalink
feat: Add vagrantfile
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoris committed Mar 7, 2020
1 parent 79c3a8d commit 3cbb919
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|

# Box Settings
config.vm.box = "ubuntu/bionic64"

# Provider Settings
config.vm.provider "virtualbox" do |vb|
vb.memory = 1024
vb.cpus = 2
end

# Network Settings
config.vm.network "forwarded_port", guest: 80, host: 8080

# Folder Settings
config.vm.synced_folder "./wwwroot", "/var/www/html", type: "virtualbox"

# Setup
config.vm.provision "shell", path: "vagrantsetup.sh"
end

0 comments on commit 3cbb919

Please sign in to comment.