Created
July 1, 2018 15:39
-
-
Save t-book/0f75dc42de17dc611a37a9ddecffc29e to your computer and use it in GitHub Desktop.
Demo Base Box for Vagrant which shows an Instance of geonode project 2.8 in production
This file contains 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| | |
config.vm.box = "t-book/geonode-project_2.8" | |
config.vm.network "private_network", ip: "192.168.33.13" | |
config.vm.provider "virtualbox" do |vb| | |
vb.memory = "4024" | |
end | |
config.vm.network "forwarded_port", guest: 80, host: 80 | |
config.vm.network "forwarded_port", guest: 8000, host: 8000 | |
config.vm.network "forwarded_port", guest: 8080, host: 8080 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment