Sha256: 364fb829956fc2c6e6d2f834ef5dac752739da3c2e33ce32345efdf15d0e0979
Contents?: true
Size: 542 Bytes
Versions: 5
Compression:
Stored size: 542 Bytes
Contents
# Vagrantfileの例(RancherOSを利用する場合) ```bash Vagrant.configure("2") do |config| config.vm.box = "dummy" config.ssh.username = "rancher" config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", disabled: true config.vm.provider :sakura do |sakura, override| sakura.os_type = "rancheros" sakura.server_plan = 4002 # 2core/4GBメモリ プラン sakura.public_key_path = File.expand_path("~/.ssh/id_rsa.pub") override.ssh.private_key_path = File.expand_path("~/.ssh/id_rsa") end end ```
Version data entries
5 entries across 5 versions & 1 rubygems