Created
July 24, 2016 14:23
-
-
Save glynrob/7e3a683231566d5b4db901bb1fb904a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at | |
# https://docs.vagrantup.com. | |
config.vm.define "rundeck" do |rundeck| | |
rundeck.vm.box = "geerlingguy/centos7" | |
rundeck.vm.network "forwarded_port", guest: 4440, host: 4440 | |
rundeck.vm.network "private_network", ip: "192.168.50.50" | |
end | |
config.vm.define "app1" do |app1| | |
app1.vm.box = "geerlingguy/centos7" | |
app1.vm.network "forwarded_port", guest: 80, host: 80 | |
app1.vm.network "private_network", ip: "192.168.50.51" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment