Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Vagrant.configure("2") do |config|
  2. config.vm.define "docker01", primary: true do |web01|
  3. web01.vm.box = "williamyeh/debian-jessie64-docker"
  4. web01.vm.hostname = 'docker-host-01'
  5.  
  6. web01.vm.network :public_network, ip: "192.168.0.221"
  7.  
  8.  
  9.  
  10.  
  11. web01.vm.provider :virtualbox do |v|
  12. #v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
  13. v.customize ["modifyvm", :id, "--memory", 512]
  14. v.customize ["modifyvm", :id, "--name", "docker-host-01"]
  15. end
  16. end
  17.  
  18.  
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement