Introducing
Your new presentation assistant.
Refine, enhance, and tailor your content, source relevant images, and edit visuals quicker than ever before.
Trending searches
$ vagrant up
$ vagrant halt
$ vagrant destroy
$ vagrant reload
$ vagrant ssh
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provision "shell", inline: "echo Hello"
config.vm.define "db" do |db|
db.vm.box = "mydb"
db.vm.box_url = "http://example.tld/mydb.box"
db.vm.hostname = "skiff-db"
end
config.vm.define "web" do |web|
web.vm.box = "myweb"
web.vm.box_url = "http://example.tld/myweb.box"
web.vm.hostname = "skiff-web"
end
end
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provision "shell", inline: "echo Hello"
config.vm.define "db" do |db|
db.vm.box = "base"
db.vm.hostname = "skiff-db"
end
config.vm.define "web" do |web|
web.vm.box = "base"
web.vm.hostname = "skiff-web"
end
end
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "base"
end
dsa
Web Server
Application Server
Database Server
ESB / SOA / Messaging / WS
Mail Server
File Server / File Share
Development
Testing
Production
???
What do you consider 'An Environment'
???
$ vagrant box
$ vagrant package
add/remove/list vm templates
create new vm template from existing vm
Each of these can be their own vm...
Coding Java since 1999
Java 'Developer' since 2004
since 2006 ...
Release / Integration /Troubleshooting