Files
startusingdocker/compose/misc/Vagrantfile
Guillem Hernandez Sola 75f631d93f Move composed to a folder
2018-06-13 11:44:39 +02:00

8 lines
228 B
Ruby
Executable File

Vagrant.configure(2) do |config|
config.vm.define "docker" do |docker|
docker.vm.box = "ubuntu/trusty64"
docker.vm.network "private_network", ip: "192.168.0.249"
docker.vm.hostname = "docker.example.com"
end
end