Created
February 15, 2018 21:16
-
-
Save tleyden/3c8f1d88ef30d4cd57d6e03b2848e290 to your computer and use it in GitHub Desktop.
Couchbase Server Vagrantfile
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
# VM for running Couchbase Server in a private network | |
# | |
# After starting: | |
# | |
# - vagrant ssh to get into the vm | |
# - wget http://latestbuilds.service.couchbase.com/builds/releases/5.0.1/couchbase-server-enterprise-5.0.1-centos7.x86_64.rpm (or from downloads page) | |
# - run "ip addr" to get eth1 ip address | |
# - on host machine, go to ip-address:8091 to setup Couchbase Server | |
Vagrant.configure("2") do |config| | |
config.vm.box = "centos/7" | |
config.vm.network "private_network", type: "dhcp" | |
config.vm.provider "virtualbox" do |vb| | |
# Customize the amount of memory on the VM: | |
vb.memory = "2048" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment