Skip to content
This repository has been archived by the owner on Jun 7, 2022. It is now read-only.

Commit

Permalink
add Vagrantfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils Petersohn committed Feb 28, 2016
1 parent 8cff894 commit decc39d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Vagrantfile
@@ -0,0 +1,15 @@
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"

config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--memory", "2048"]
v.customize ["modifyvm", :id, "--cpus", "2"]
end

config.vm.provision "docker" do |docker|
docker.pull_images "keyvanfatehi/sinopia:latest"
docker.run "keyvanfatehi/sinopia", args: "-p 4873:4873"
end

config.vm.network "private_network", ip: "10.10.10.10"
end

0 comments on commit decc39d

Please sign in to comment.