1 Star 0 Fork 0

白落提/EFDC-MPI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Vagrantfile 976 Bytes
一键复制 编辑 原始数据 按行查看 历史
白落提 提交于 2024-08-28 14:44 . first commit
$machine_cap = "90"
$machine_cpus = "8"
$machine_name = "ubuntu-EFDC"
$machine_ram = "4096"
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.synced_folder "./", "/home/efdc/", create: true
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--name", $machine_name]
vb.customize ["modifyvm", :id, "--cpus", $machine_cpus]
vb.customize ["modifyvm", :id, "--cpuexecutioncap", $machine_cap]
vb.customize ["modifyvm", :id, "--memory", $machine_ram]
end
# execute the setup.sh bash script that installs all required dependencies
config.vm.provision "shell" do |s|
s.path = "./setup.sh"
end
config.ssh.forward_agent = true
config.ssh.forward_x11 = true
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bailuoti/efdc-mpi.git
git@gitee.com:bailuoti/efdc-mpi.git
bailuoti
efdc-mpi
EFDC-MPI
master

搜索帮助