Added first code

This commit is contained in:
Guillem Hernandez Sola
2018-06-13 10:15:10 +02:00
commit 3b4d6dc3e0
3 changed files with 77 additions and 0 deletions

8
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,8 @@
Vagrant.configure(2) do |config|
config.vm.define "docker" do |docker|
docker.vm.box = "bento/ubuntu-18.04"
docker.vm.network "private_network", ip: "192.168.11.22"
docker.vm.hostname = "docker"
docker.vm.provision :shell, :path => "docker.sh"
end
end