1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/mirrors-vagrant

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
Vagrantfile 1.1 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
sophia Отправлено 28.07.2022 22:12 ba93a4e
# This Vagrantfile can be used to develop Vagrant. Note that VirtualBox
# doesn't run in VirtualBox so you can't actually _run_ Vagrant within
# the VM created by this Vagrantfile, but you can use it to develop the
# Ruby, run unit tests, etc.
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/bionic64"
config.vm.hostname = "vagrant"
config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'"
["vmware_desktop", "virtualbox", "hyperv"].each do |provider|
config.vm.provider provider do |v, override|
v.memory = "2048"
end
end
# We split apart `install_rvm` from `setup_tests` because rvm says to
# logout and log back in just after installing RVM.
# https://github.com/rvm/ubuntu_rvm#3-reboot
config.vm.provision "shell", path: "scripts/install_rvm"
config.vm.provision "shell", path: "scripts/setup_tests"
config.push.define "www", strategy: "local-exec" do |push|
push.script = "scripts/website_push_www.sh"
end
config.push.define "docs", strategy: "local-exec" do |push|
push.script = "scripts/website_push_docs.sh"
end
end

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/mirrors-vagrant.git
git@api.gitlife.ru:oschina-mirror/mirrors-vagrant.git
oschina-mirror
mirrors-vagrant
mirrors-vagrant
main