Sha256: 7627acf2f261c56335553b9fddfb6874a3ed3b3e56f21e666e4fb78865b19fdb
Contents?: true
Size: 409 Bytes
Versions: 7
Compression:
Stored size: 409 Bytes
Contents
# Vagrantfileの例(CoreOS/ContainerLinuxを利用する場合) ```bash Vagrant.configure("2") do |config| config.vm.box = "dummy" config.ssh.username = "core" config.vm.provider :sakura do |sakura, override| sakura.os_type = "coreos" 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
7 entries across 7 versions & 1 rubygems