Skip to content

Commit fa4c9cd

Browse files
committed
Add Vagrantfile
1 parent 02a69e3 commit fa4c9cd

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vagrant/

Vagrantfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Vagrant.configure("2") do |config|
2+
config.vm.box = "onozaty/redmine-4.1"
3+
config.vm.network "private_network", ip: "192.168.33.10"
4+
5+
config.vm.synced_folder ".", "/var/lib/redmine/plugins/view_customize", mount_options: ['dmode=777','fmode=755']
6+
7+
config.vm.provider "virtualbox" do |vb|
8+
vb.memory = "1024"
9+
end
10+
end

0 commit comments

Comments
 (0)