Vagrant.configure("2") do |config|
config.vm.box = "centos/7"
config.vm.hostname = "base"
config.vm.network "private_network", type: "dhcp"
config.vm.network "forwarded_port", host: 9092, guest: 9092
config.vm.network "forwarded_port", host: 3306, guest: 3306
config.ssh.insert_key = false
config.vm.provider "virtualbox" do |v|
v.memory = 4096
v.cpus = 4
end
end
More than 5 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme