Skip to content

Instantly share code, notes, and snippets.

@tleyden
Created February 15, 2018 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tleyden/3c8f1d88ef30d4cd57d6e03b2848e290 to your computer and use it in GitHub Desktop.
Save tleyden/3c8f1d88ef30d4cd57d6e03b2848e290 to your computer and use it in GitHub Desktop.
Couchbase Server Vagrantfile
# 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